diff --git a/src/KeyVault/KeyVault/Models/KeyVaultDataServiceClient.cs b/src/KeyVault/KeyVault/Models/KeyVaultDataServiceClient.cs index 8cc3d7af384d..62e1bef74369 100644 --- a/src/KeyVault/KeyVault/Models/KeyVaultDataServiceClient.cs +++ b/src/KeyVault/KeyVault/Models/KeyVaultDataServiceClient.cs @@ -21,10 +21,12 @@ using System.Security; using System.Security.Cryptography.X509Certificates; using System.Xml; +using Microsoft.Azure.Commands.Common.Authentication; using Microsoft.Azure.Commands.Common.Authentication.Abstractions; using Microsoft.Azure.KeyVault; using Microsoft.Azure.KeyVault.Models; using Microsoft.Azure.KeyVault.WebKey; +using Microsoft.Rest; using Microsoft.Rest.Azure; using KeyVaultProperties = Microsoft.Azure.Commands.KeyVault.Properties; @@ -41,9 +43,8 @@ public KeyVaultDataServiceClient(IAuthenticationFactory authFactory, IAzureConte if (context.Environment == null) throw new ArgumentException(KeyVaultProperties.Resources.InvalidAzureEnvironment); - var credential = new DataServiceCredential(authFactory, context, AzureEnvironment.Endpoint.AzureKeyVaultServiceEndpointResourceId); - this.keyVaultClient = new KeyVaultClient(credential.OnAuthentication); - + ServiceClientCredentials clientCredentials = authFactory.GetServiceClientCredentials(context, AzureEnvironment.Endpoint.AzureKeyVaultServiceEndpointResourceId); + this.keyVaultClient = AzureSession.Instance.ClientFactory.CreateCustomArmClient(clientCredentials); this.vaultUriHelper = new VaultUriHelper( context.Environment.GetEndpoint(AzureEnvironment.Endpoint.AzureKeyVaultDnsSuffix)); diff --git a/src/Network/Network.Test/Network.Test.csproj b/src/Network/Network.Test/Network.Test.csproj index a644f8d8c850..82b79a290510 100644 --- a/src/Network/Network.Test/Network.Test.csproj +++ b/src/Network/Network.Test/Network.Test.csproj @@ -1,4 +1,4 @@ - + Network @@ -14,6 +14,8 @@ + + @@ -21,6 +23,7 @@ + diff --git a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs index fdbd99928804..4e2f2bb95f51 100644 --- a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs +++ b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs @@ -14,6 +14,8 @@ using System; using Microsoft.Azure.Commands.Network.Test.ScenarioTests; +using Microsoft.Azure.Test.HttpRecorder; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Xunit; @@ -66,6 +68,30 @@ public void TestApplicationGatewayCRUD3() TestRunner.RunTestScript(string.Format("Test-ApplicationGatewayCRUD3 -baseDir '{0}'", AppDomain.CurrentDomain.BaseDirectory)); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, NrpTeamAlias.nvadev)] + public void TestKeyVaultIntegrationTest() + { + string environmentConnectionString = Environment.GetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION"); + string servicePrincipal = "fakefakefake"; + if (!string.IsNullOrEmpty(environmentConnectionString)) + { + var connectionInfo = new ConnectionString(Environment.GetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION")); + var mode = connectionInfo.GetValue(ConnectionStringKeys.HttpRecorderModeKey); + if (mode == HttpRecorderMode.Playback.ToString()) + { + servicePrincipal = HttpMockServer.GetVariable("spn", "fake"); + } + else + { + servicePrincipal = connectionInfo.GetValue(ConnectionStringKeys.ServicePrincipalKey); + HttpMockServer.Variables["spn"] = servicePrincipal; + } + } + TestRunner.RunTestScript(string.Format("Test-KeyVaultIntegrationTest -baseDir '{0}' -spn '{1}'", AppDomain.CurrentDomain.BaseDirectory, servicePrincipal)); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.Owner, NrpTeamAlias.nvadev)] diff --git a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 index ccbf985b2851..94daecca015b 100644 --- a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 @@ -1390,6 +1390,140 @@ function Test-ApplicationGatewayCRUD3 } } +<# +.SYNOPSIS +Application gateway v2 tests for key vault +#> +function Test-KeyVaultIntegrationTest +{ + param + ( + [string]$basedir = "./", + [string]$spn + ) + + # Setup + $location = Get-ProviderLocation "Microsoft.Network/applicationGateways" "West US 2" + + $rgname = Get-ResourceGroupName + $appgwName = Get-ResourceName + $identityName = Get-ResourceName + $vnetName = Get-ResourceName + $gwSubnetName = Get-ResourceName + $publicIpName = Get-ResourceName + $gipconfigname = Get-ResourceName + + $frontendPort01Name = Get-ResourceName + $fipconfigName = Get-ResourceName + $listener01Name = Get-ResourceName + + $poolName = Get-ResourceName + $poolSetting01Name = Get-ResourceName + + $rule01Name = Get-ResourceName + + $keyVaultName = Get-ResourceName + $sslCert01Name = Get-ResourceName + $sslCert02Name = Get-ResourceName + + try + { + # resource group + New-AzResourceGroup -Name $rgname -Location $location -Tags @{ testtag = "APPGw tag"} + + # managed identity + $identity = New-AzUserAssignedIdentity -Name $identityName -Location $location -ResourceGroup $rgname + + # keyvault + if ((Get-NetworkTestMode) -ne 'Playback') + { + New-AzKeyVault -Name $keyVaultName -ResourceGroupName $rgname -Location $location -EnableSoftDelete + Set-AzKeyVaultAccessPolicy -VaultName $keyVaultName -ServicePrincipalName $spn -PermissionsToSecrets get -PermissionsToCertificates get,list,delete,create,import,update,managecontacts,getissuers,listissuers,setissuers,deleteissuers,manageissuers,recover,purge,backup,restore + Set-AzKeyVaultAccessPolicy -VaultName $keyVaultName -ObjectId $identity.PrincipalId -PermissionsToSecrets get -BypassObjectIdValidation + + $policy = New-AzKeyVaultCertificatePolicy -ValidityInMonths 12 ` + -SubjectName "CN=www.app.com" -IssuerName self ` + -RenewAtNumberOfDaysBeforeExpiry 30 + + $certificate01 = Add-AzKeyVaultCertificate -VaultName $keyVaultName -Name $sslCert01Name -CertificatePolicy $policy + $certificate02 = Add-AzKeyVaultCertificate -VaultName $keyVaultName -Name $sslCert02Name -CertificatePolicy $policy + + Start-Sleep 30 + + $certificate01 = Get-AzKeyVaultCertificate -VaultName $keyVaultName -Name $sslCert01Name + $secretId01 = $certificate01.SecretId.Replace($certificate01.Version, "") + + $certificate02 = Get-AzKeyVaultCertificate -VaultName $keyVaultName -Name $sslCert02Name + $secretId02 = $certificate02.SecretId.Replace($certificate02.Version, "") + } + else + { + $secretId01 = "https://$keyVaultName.vault.azure.net:443/secrets/$sslCert01Name/" + $secretId02 = "https://$keyVaultName.vault.azure.net:443/secrets/$sslCert02Name/" + } + + # virtual network + $gwSubnet = New-AzVirtualNetworkSubnetConfig -Name $gwSubnetName -AddressPrefix 10.0.0.0/24 + $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $gwSubnet + $vnet = Get-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname + $gwSubnet = Get-AzVirtualNetworkSubnetConfig -Name $gwSubnetName -VirtualNetwork $vnet + + # public ip + $publicip = New-AzPublicIpAddress -ResourceGroupName $rgname -name $publicIpName -location $location -AllocationMethod Static -sku Standard + + # ip configuration + $gipconfig = New-AzApplicationGatewayIPConfiguration -Name $gipconfigname -Subnet $gwSubnet + + $fipconfig = New-AzApplicationGatewayFrontendIPConfig -Name $fipconfigName -PublicIPAddress $publicip + $fp01 = New-AzApplicationGatewayFrontendPort -Name $frontendPort01Name  -Port 80 + $listener01 = New-AzApplicationGatewayHttpListener -Name $listener01Name -Protocol Http -FrontendIPConfiguration $fipconfig -FrontendPort $fp01 + + # backend part + $pool = New-AzApplicationGatewayBackendAddressPool -Name $poolName -BackendIPAddresses 10.0.0.1 + $poolSetting01 = New-AzApplicationGatewayBackendHttpSettings -Name $poolSetting01Name -Port 80 -Protocol Http -CookieBasedAffinity Enabled -PickHostNameFromBackendAddress + + # rule + $rule01 = New-AzApplicationGatewayRequestRoutingRule -Name $rule01Name -RuleType basic -BackendHttpSettings $poolSetting01 -HttpListener $listener01 -BackendAddressPool $pool + + # sku + $sku = New-AzApplicationGatewaySku -Name Standard_v2 -Tier Standard_v2 -Capacity 2 + + # appgw identity + $appgwIdentity = New-AzApplicationGatewayIdentity -UserAssignedIdentity $identity.Id + + # ssl cert + $sslCert01 = New-AzApplicationGatewaySslCertificate -Name $sslCert01Name -KeyVaultSecretId $secretId01 + + # create + $appgw = New-AzApplicationGateway -Sku $sku -Identity $appgwIdentity -Name $appgwName -ResourceGroupName $rgname -Zone 1,2 -Location $location ` + -BackendAddressPools $pool -BackendHttpSettingsCollection $poolSetting01 ` + -FrontendIpConfigurations $fipconfig -GatewayIpConfigurations $gipconfig -FrontendPorts $fp01 -HttpListeners $listener01 ` + -SslCertificates $sslCert01 ` + -RequestRoutingRules $rule01 + + Assert-AreEqual $appgw.SslCertificates.Count 1 + Assert-AreEqual $appgw.SslCertificates[0].KeyVaultSecretId $secretId01 + + # modify the certificate + $appgw = Set-AzApplicationGatewaySslCertificate -Name $sslCert01Name -KeyVaultSecretId $secretId02 -ApplicationGateway $appgw + $result = Set-AzApplicationGateway -ApplicationGateway $appgw + + Assert-AreEqual $result.SslCertificates[0].KeyVaultSecretId $secretId02 + + $result = Remove-AzApplicationGatewaySslCertificate -Name $sslCert01Name -ApplicationGateway $result + + Assert-AreEqual $result.SslCertificates.Count 0 + + # delete + Remove-AzApplicationGateway -Name $appgwName -ResourceGroupName $rgname -Force + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + <# .SYNOPSIS Compare connectionDraining of backendhttpsettings diff --git a/src/Network/Network.Test/ScenarioTests/NetworkTestRunner.cs b/src/Network/Network.Test/ScenarioTests/NetworkTestRunner.cs index a629cfceba0e..0462257491fa 100644 --- a/src/Network/Network.Test/ScenarioTests/NetworkTestRunner.cs +++ b/src/Network/Network.Test/ScenarioTests/NetworkTestRunner.cs @@ -1,5 +1,18 @@ -using System.Collections.Generic; +using System; +using System.Collections.Generic; using Microsoft.Azure.Commands.TestFx; +using Microsoft.Azure.Internal.Common; +using Microsoft.Azure.KeyVault; +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Internal.Resources; +using Microsoft.Azure.Management.KeyVault; +using Microsoft.Azure.Management.ManagedServiceIdentity; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Management.Storage; +using Microsoft.Azure.Test.HttpRecorder; +using Microsoft.IdentityModel.Clients.ActiveDirectory; +using Microsoft.Rest; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Xunit.Abstractions; namespace Microsoft.Azure.Commands.Network.Test.ScenarioTests @@ -27,6 +40,7 @@ protected NetworkTestRunner(ITestOutputHelper output) helper.GetRMModulePath("AzureRM.Storage.psd1"), helper.GetRMModulePath("AzureRM.ContainerInstance.psd1"), helper.GetRMModulePath("AzureRM.OperationalInsights.psd1"), + helper.GetRMModulePath("AzureRM.KeyVault.psd1"), helper.GetRMModulePath("AzureRM.ManagedServiceIdentity.psd1"), }) .WithNewRecordMatcherArguments ( @@ -41,10 +55,82 @@ protected NetworkTestRunner(ITestOutputHelper output) {"Microsoft.Features", null}, {"Microsoft.Authorization", null}, {"Microsoft.Storage", null}, + {"Microsoft.KeyVault", null}, {"Microsoft.ManagedServiceIdentity", null}, } + ).WithManagementClients( + GetResourceManagementClient, + GetManagedServiceIdentityClient, + GetKeyVaultManagementClient, + GetNetworkManagementClient, + GetComputeManagementClient, + GetStorageManagementClient, + GetKeyVaultClient, + GetAzureRestClient ) .Build(); } + + private static ResourceManagementClient GetResourceManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + + private static ManagedServiceIdentityClient GetManagedServiceIdentityClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + + private static KeyVaultManagementClient GetKeyVaultManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + + private static NetworkManagementClient GetNetworkManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + + private static ComputeManagementClient GetComputeManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + + private static StorageManagementClient GetStorageManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + + private static AzureRestClient GetAzureRestClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + + private static KeyVaultClient GetKeyVaultClient(MockContext context) + { + string environmentConnectionString = Environment.GetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION"); + string accessToken = "fakefakefake"; + + // When recording, we should have a connection string passed into the code from the environment + if (!string.IsNullOrEmpty(environmentConnectionString)) + { + // Gather test client credential information from the environment + var connectionInfo = new ConnectionString(Environment.GetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION")); + var mode = connectionInfo.GetValue(ConnectionStringKeys.HttpRecorderModeKey); + if (mode == HttpRecorderMode.Record.ToString()) + { + string servicePrincipal = connectionInfo.GetValue(ConnectionStringKeys.ServicePrincipalKey); + string servicePrincipalSecret = connectionInfo.GetValue(ConnectionStringKeys.ServicePrincipalSecretKey); + string aadTenant = connectionInfo.GetValue(ConnectionStringKeys.AADTenantKey); + + // Create credentials + var clientCredentials = new ClientCredential(servicePrincipal, servicePrincipalSecret); + var authContext = new AuthenticationContext($"https://login.windows.net/{aadTenant}", TokenCache.DefaultShared); + accessToken = authContext.AcquireTokenAsync("https://vault.azure.net", clientCredentials).Result.AccessToken; + } + } + + return new KeyVaultClient(new TokenCredentials(accessToken), HttpMockServer.CreateInstance()); + } } } diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestKeyVaultIntegrationTest.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestKeyVaultIntegrationTest.json new file mode 100644 index 000000000000..78320618e637 --- /dev/null +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestKeyVaultIntegrationTest.json @@ -0,0 +1,10709 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b001cf83-b35e-4ae9-8432-c50199f21a13" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "28d4eb7d-7880-42bc-9487-171065914f9b" + ], + "x-ms-correlation-request-id": [ + "28d4eb7d-7880-42bc-9487-171065914f9b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233130Z:28d4eb7d-7880-42bc-9487-171065914f9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:31:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "70378" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/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 \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"North Europe\"\r\n ],\r\n \"apiVersions\": [\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 \"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\": \"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 },\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 ],\r\n \"apiVersions\": [\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 \"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\": \"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 },\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 \"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 \"North Europe\"\r\n ],\r\n \"apiVersions\": [\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 \"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\": \"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 },\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 \"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\": \"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 },\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 ],\r\n \"apiVersions\": [\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-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-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-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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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-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 ],\r\n \"apiVersions\": [\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-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-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-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-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-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-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 ],\r\n \"apiVersions\": [\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-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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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-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-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\": \"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 ],\r\n \"apiVersions\": [\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 \"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\": \"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 },\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-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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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\": \"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\": \"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\": \"frontdoors\",\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\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 \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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\": \"webApplicationFirewallPolicies\",\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-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 \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\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 \"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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourcegroups/ps2103?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlZ3JvdXBzL3BzMjEwMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa9a44cc-19d0-4ac1-a252-6ff7a0cf0c56" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "111e1c3e-2108-43b1-a378-4179796a84b4" + ], + "x-ms-correlation-request-id": [ + "111e1c3e-2108-43b1-a378-4179796a84b4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233132Z:111e1c3e-2108-43b1-a378-4179796a84b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:31:31 GMT" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103\",\r\n \"name\": \"ps2103\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ps5071?api-version=2015-08-31-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hbmFnZWRJZGVudGl0eS91c2VyQXNzaWduZWRJZGVudGl0aWVzL3BzNTA3MT9hcGktdmVyc2lvbj0yMDE1LTA4LTMxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97a3df49-4cbc-4adf-9a7f-13a002a133fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.ManagedServiceIdentity.ManagedServiceIdentityClient/0.10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourcegroups/ps2103/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ps5071" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "056a9470-2575-48a5-9d6d-f053df4ea210" + ], + "x-ms-correlation-request-id": [ + "056a9470-2575-48a5-9d6d-f053df4ea210" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233135Z:056a9470-2575-48a5-9d6d-f053df4ea210" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:31:34 GMT" + ], + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourcegroups/ps2103/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ps5071\",\r\n \"name\": \"ps5071\",\r\n \"type\": \"Microsoft.ManagedIdentity/userAssignedIdentities\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"d61ea9e8-c23d-47dd-85cf-f89b1b4abb79\",\r\n \"clientId\": \"a9e5ed4c-3cff-41b6-9f62-e55004f56676\",\r\n \"clientSecretUrl\": \"https://control-westus2.identity.azure.net/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourcegroups/ps2103/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ps5071/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=d61ea9e8-c23d-47dd-85cf-f89b1b4abb79&aid=a9e5ed4c-3cff-41b6-9f62-e55004f56676\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34ddd73e-d37b-445a-b39d-6701c84a4da1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "82a217c9-3449-4e8f-a176-09e6d9aea2f8" + ], + "x-ms-correlation-request-id": [ + "82a217c9-3449-4e8f-a176-09e6d9aea2f8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233135Z:82a217c9-3449-4e8f-a176-09e6d9aea2f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:31:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "248" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.KeyVault/vaults/kv-test-aks\",\r\n \"name\": \"kv-test-aks\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0cdb0215-fe96-4b9f-b2e3-a112b5fb9adf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "393113b8-21d5-4e24-b1d1-4b75dd9f5d31" + ], + "x-ms-correlation-request-id": [ + "393113b8-21d5-4e24-b1d1-4b75dd9f5d31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233208Z:393113b8-21d5-4e24-b1d1-4b75dd9f5d31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "456" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.KeyVault/vaults/kv-test-aks\",\r\n \"name\": \"kv-test-aks\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.KeyVault/vaults/ps4499\",\r\n \"name\": \"ps4499\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e00988f-1c3e-4551-9bc6-a3e49d1f8e43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "1f899f29-e1fb-43ca-a92f-a7a93d29b943" + ], + "x-ms-correlation-request-id": [ + "1f899f29-e1fb-43ca-a92f-a7a93d29b943" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233208Z:1f899f29-e1fb-43ca-a92f-a7a93d29b943" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "456" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.KeyVault/vaults/kv-test-aks\",\r\n \"name\": \"kv-test-aks\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.KeyVault/vaults/ps4499\",\r\n \"name\": \"ps4499\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.KeyVault/vaults/ps4499?api-version=2018-02-14", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ0OTk/YXBpLXZlcnNpb249MjAxOC0wMi0xNA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\",\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d9c60f07-ab96-4539-983d-b2c17a8ae81b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "477" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.276" + ], + "x-ms-request-id": [ + "c869c1e2-3e75-44d9-87c4-74e54e817cca" + ], + "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": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "b9f1f5b0-1af7-4927-be74-7aa6e4a0df15" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233137Z:b9f1f5b0-1af7-4927-be74-7aa6e4a0df15" + ], + "Date": [ + "Thu, 26 Mar 2020 23:31:36 GMT" + ], + "Content-Length": [ + "537" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.KeyVault/vaults/ps4499\",\r\n \"name\": \"ps4499\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US 2\",\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 \"vaultUri\": \"https://ps4499.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.KeyVault/vaults/ps4499?api-version=2018-02-14", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ0OTk/YXBpLXZlcnNpb249MjAxOC0wMi0xNA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\",\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 {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f505f6ea-fe1f-4604-8fe2-db78ec044898\",\r\n \"permissions\": {\r\n \"keys\": [],\r\n \"secrets\": [\r\n \"get\"\r\n ],\r\n \"certificates\": [\r\n \"get\",\r\n \"list\",\r\n \"delete\",\r\n \"create\",\r\n \"import\",\r\n \"update\",\r\n \"managecontacts\",\r\n \"getissuers\",\r\n \"listissuers\",\r\n \"setissuers\",\r\n \"deleteissuers\",\r\n \"manageissuers\",\r\n \"recover\",\r\n \"purge\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"storage\": []\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"https://ps4499.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": 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": [ + "cb9fbae2-9b54-47b9-9d1e-a961a40a775d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1308" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.276" + ], + "x-ms-request-id": [ + "cd8c47cb-96b9-4c99-bd54-97e541e91473" + ], + "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": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "30782980-44b0-46fe-b0f6-4253bf3c2d13" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233208Z:30782980-44b0-46fe-b0f6-4253bf3c2d13" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:08 GMT" + ], + "Content-Length": [ + "883" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.KeyVault/vaults/ps4499\",\r\n \"name\": \"ps4499\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US 2\",\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 {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f505f6ea-fe1f-4604-8fe2-db78ec044898\",\r\n \"permissions\": {\r\n \"keys\": [],\r\n \"secrets\": [\r\n \"get\"\r\n ],\r\n \"certificates\": [\r\n \"get\",\r\n \"list\",\r\n \"delete\",\r\n \"create\",\r\n \"import\",\r\n \"update\",\r\n \"managecontacts\",\r\n \"getissuers\",\r\n \"listissuers\",\r\n \"setissuers\",\r\n \"deleteissuers\",\r\n \"manageissuers\",\r\n \"recover\",\r\n \"purge\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"storage\": []\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://ps4499.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.KeyVault/vaults/ps4499?api-version=2018-02-14", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ0OTk/YXBpLXZlcnNpb249MjAxOC0wMi0xNA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\",\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 {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f505f6ea-fe1f-4604-8fe2-db78ec044898\",\r\n \"permissions\": {\r\n \"keys\": [],\r\n \"secrets\": [\r\n \"get\"\r\n ],\r\n \"certificates\": [\r\n \"get\",\r\n \"list\",\r\n \"delete\",\r\n \"create\",\r\n \"import\",\r\n \"update\",\r\n \"managecontacts\",\r\n \"getissuers\",\r\n \"listissuers\",\r\n \"setissuers\",\r\n \"deleteissuers\",\r\n \"manageissuers\",\r\n \"recover\",\r\n \"purge\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"storage\": []\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"d61ea9e8-c23d-47dd-85cf-f89b1b4abb79\",\r\n \"permissions\": {\r\n \"keys\": [],\r\n \"secrets\": [\r\n \"get\"\r\n ],\r\n \"certificates\": [],\r\n \"storage\": []\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"https://ps4499.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": 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": [ + "e7a4aaf8-8cc9-46c2-8666-4945237c9a6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1622" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.276" + ], + "x-ms-request-id": [ + "001f531c-4fd0-4f07-9326-de9d713951eb" + ], + "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": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "7c3dfdef-5b48-4bff-b874-66776ec70d9d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233209Z:7c3dfdef-5b48-4bff-b874-66776ec70d9d" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:09 GMT" + ], + "Content-Length": [ + "1060" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.KeyVault/vaults/ps4499\",\r\n \"name\": \"ps4499\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US 2\",\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 {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f505f6ea-fe1f-4604-8fe2-db78ec044898\",\r\n \"permissions\": {\r\n \"keys\": [],\r\n \"secrets\": [\r\n \"get\"\r\n ],\r\n \"certificates\": [\r\n \"get\",\r\n \"list\",\r\n \"delete\",\r\n \"create\",\r\n \"import\",\r\n \"update\",\r\n \"managecontacts\",\r\n \"getissuers\",\r\n \"listissuers\",\r\n \"setissuers\",\r\n \"deleteissuers\",\r\n \"manageissuers\",\r\n \"recover\",\r\n \"purge\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"storage\": []\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"d61ea9e8-c23d-47dd-85cf-f89b1b4abb79\",\r\n \"permissions\": {\r\n \"keys\": [],\r\n \"secrets\": [\r\n \"get\"\r\n ],\r\n \"certificates\": [],\r\n \"storage\": []\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://ps4499.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.KeyVault/vaults/ps4499?api-version=2018-02-14", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ0OTk/YXBpLXZlcnNpb249MjAxOC0wMi0xNA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.276" + ], + "x-ms-request-id": [ + "33a1a7eb-2f1f-4ee6-a362-24b215829989" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "bce47815-9291-4d27-b01a-60f3f209170b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233208Z:bce47815-9291-4d27-b01a-60f3f209170b" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:07 GMT" + ], + "Content-Length": [ + "533" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.KeyVault/vaults/ps4499\",\r\n \"name\": \"ps4499\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US 2\",\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 \"vaultUri\": \"https://ps4499.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.KeyVault/vaults/ps4499?api-version=2018-02-14", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ0OTk/YXBpLXZlcnNpb249MjAxOC0wMi0xNA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e5c05f1-1c59-40bb-9bd8-abf4282ea564" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.276" + ], + "x-ms-request-id": [ + "7acd4472-8736-4aba-814f-a1858be27a1b" + ], + "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": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b879d9e6-c376-4c2a-9d23-de5e554052ca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233208Z:b879d9e6-c376-4c2a-9d23-de5e554052ca" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:08 GMT" + ], + "Content-Length": [ + "533" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.KeyVault/vaults/ps4499\",\r\n \"name\": \"ps4499\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US 2\",\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 \"vaultUri\": \"https://ps4499.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.KeyVault/vaults/ps4499?api-version=2018-02-14", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQ0OTk/YXBpLXZlcnNpb249MjAxOC0wMi0xNA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af91e2ab-6550-4bab-b09f-e744e99f5ca3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.276" + ], + "x-ms-request-id": [ + "25b84853-9b8b-4afb-bb21-0acb0179c1dc" + ], + "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": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "0a2a0785-b036-49f5-9f75-20a9dcefad02" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233209Z:0a2a0785-b036-49f5-9f75-20a9dcefad02" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:08 GMT" + ], + "Content-Length": [ + "883" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.KeyVault/vaults/ps4499\",\r\n \"name\": \"ps4499\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US 2\",\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 {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f505f6ea-fe1f-4604-8fe2-db78ec044898\",\r\n \"permissions\": {\r\n \"keys\": [],\r\n \"secrets\": [\r\n \"get\"\r\n ],\r\n \"certificates\": [\r\n \"get\",\r\n \"list\",\r\n \"delete\",\r\n \"create\",\r\n \"import\",\r\n \"update\",\r\n \"managecontacts\",\r\n \"getissuers\",\r\n \"listissuers\",\r\n \"setissuers\",\r\n \"deleteissuers\",\r\n \"manageissuers\",\r\n \"recover\",\r\n \"purge\",\r\n \"backup\",\r\n \"restore\"\r\n ],\r\n \"storage\": []\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://ps4499.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "//certificates/ps4266/create?api-version=7.0", + "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvcHM0MjY2L2NyZWF0ZT9hcGktdmVyc2lvbj03LjA=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"policy\": {\r\n \"key_props\": {\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=www.app.com\",\r\n \"validity_months\": 12\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"days_before_expiry\": 30\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "249eecf4-0110-449a-bf06-9477699d0a6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.KeyVault.KeyVaultClient/3.0.520.10303" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "509" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://ps4499.vault.azure.net/certificates/ps4266/pending?api-version=7.0&request_id=3495c234a216436687a8c6a7b16abcb0" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-keyvault-region": [ + "West US 2" + ], + "x-ms-request-id": [ + "d5ed54b4-0118-4613-9d29-a8b785dcde77" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.898" + ], + "x-ms-keyvault-network-info": [ + "addr=167.220.24.66;act_addr_fam=InterNetwork;" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1278" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://ps4499.vault.azure.net/certificates/ps4266/pending\",\r\n \"issuer\": {\r\n \"name\": \"self\"\r\n },\r\n \"csr\": \"MIICpjCCAY4CAQAwFjEUMBIGA1UEAxMLd3d3LmFwcC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDSxlZRmY/+cMIDN0eNVnktdOb/w9Fn6rU/eyysDVKUolOEYNG84EWMcG7sK067aLaEAXjghGLF/p5tWpEsr74yBTsOeDIXml5EVKDLY8Sj6f+GgVA1mPehv0F7lrKF4c+BNjCZ8kRJ25jeybQFMOAqU8MOfP1vNAkyBGKPPkcMiLqqwj9sbI13L6wAJDatWspNHJPP0/o9qrzbIRVOOXZW3/rkATqbuuzm1s9TOaixoVuaAnLOR2sjmGzA3XFnuV3noD9kw6y2baTLM8H99ldochMjUR9APSFl2N/1EtEavQQjzLKMXCcnd3dIjdrzc7UCeorA6Wp2ahhMUUDx11wPAgMBAAGgSzBJBgkqhkiG9w0BCQ4xPDA6MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwCQYDVR0TBAIwADANBgkqhkiG9w0BAQsFAAOCAQEAltWljUl8PnXcVGxQF3oFo9YxXCaQ3HgQmCHhxnWLwNJjZ9FDezwwH01F8xo0YHpcpo5wb6eUezoqJG3w5wNZLCVn90AWtjPMDU03oBWqWSHEdqdk5SaLEwUfU6u5sV5hMJoPcmP3KJ6R6Rm8lGNfcW3rBE5bHUZYwHU3DEfjYjFE/HEnSivBgw79yaEb8Ts3aDAhJkFMtMFC0NX7OixaoteREcbod45y2gWajr7xuYKRmtjSlvY5MnnrX+QZ8SxUIyEk6yPmgdeSaPx4vU5YDmh1N+LASaJiz+C3Cg1hDxR/veWRJEKG4GkVg2AvSAhDy74xSKxwgV0TpPSWLk//1w==\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"3495c234a216436687a8c6a7b16abcb0\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "//certificates/ps4660/create?api-version=7.0", + "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvcHM0NjYwL2NyZWF0ZT9hcGktdmVyc2lvbj03LjA=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"policy\": {\r\n \"key_props\": {\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=www.app.com\",\r\n \"validity_months\": 12\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"days_before_expiry\": 30\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f3566d3-66a7-4589-ac24-d905d2bb2983" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.KeyVault.KeyVaultClient/3.0.520.10303" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "509" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://ps4499.vault.azure.net/certificates/ps4660/pending?api-version=7.0&request_id=6fef62c2c53046949c5c1789173beb87" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-keyvault-region": [ + "West US 2" + ], + "x-ms-request-id": [ + "b6f27b14-4e6a-44c1-a46d-865416df780b" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.898" + ], + "x-ms-keyvault-network-info": [ + "addr=167.220.24.66;act_addr_fam=InterNetwork;" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1278" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://ps4499.vault.azure.net/certificates/ps4660/pending\",\r\n \"issuer\": {\r\n \"name\": \"self\"\r\n },\r\n \"csr\": \"MIICpjCCAY4CAQAwFjEUMBIGA1UEAxMLd3d3LmFwcC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCTRMwPpgPNm0a4B7cVqKiS1nWNGG9/PKega+GV83gNSdexzYDclxZDNIHSm0qHGq1BE3RB++GZWieCUthsyYil/ck1V91TF39QkOQAN6Ypzzn8gANw99/5BXga6lAsyraKkgnnFTD1xMep0zd589WHFz5AgfCY/j/7QT8w4tmOoFpQSGj2PgSlYa4U+wvkGgtEwPOqwNJ8g9dvYu+cDlM2ejK2Bkq+9l9ch0dWoKPa0ttCJZePlSIZozLpOMYN+o949x1bmvF+D0vBVTlzS7auRn6+PwVEaM0g0vmB5dSjZQAwCKTaqOlxbS0OZbBjANXJyN4T12GPrNw4F9ZKWiFHAgMBAAGgSzBJBgkqhkiG9w0BCQ4xPDA6MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwCQYDVR0TBAIwADANBgkqhkiG9w0BAQsFAAOCAQEAQUV5EwPhiEKxLFrT5AvYWg3Allo6IFCXGkNtwQM/4DMsj4VL7dAGGK6AQp/pJIgn8S2p2BIjOz5/eOMHdFfaspPEZ0EmnwBZ0Q7fdcYCiwewYzMV9IIq4geklmRq90PWHQVztP/vuZJOpz/daFheAisAC8/h/qvvLp2rTPfYKefY1+lhX5r6JRv+QgMDYRmIqTiUz93D2NjSJCw4Z1nav79D0rubYYKSO7g1DjhWVOA2orHAjsoxdSA3YRZ2EOydwpu1mUOG1pigZFsgRit7BrecMWUvy36d2FM0G22C8XTNZYtX+XnKYxiymfEphuujU7qZH8muRmaGxDN1++2sKQ==\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"6fef62c2c53046949c5c1789173beb87\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "//certificates/ps4266/?api-version=7.0", + "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvcHM0MjY2Lz9hcGktdmVyc2lvbj03LjA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af742865-ccf4-4911-b736-db292cb95081" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.KeyVault.KeyVaultClient/3.0.520.10303" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-keyvault-region": [ + "West US 2" + ], + "x-ms-request-id": [ + "f2b36b6b-7574-47ec-bb14-58dfb7f7ed21" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.898" + ], + "x-ms-keyvault-network-info": [ + "addr=167.220.24.66;act_addr_fam=InterNetwork;" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2225" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://ps4499.vault.azure.net/certificates/ps4266/54d69a119764486cad9d5de00c34d0ed\",\r\n \"kid\": \"https://ps4499.vault.azure.net/keys/ps4266/54d69a119764486cad9d5de00c34d0ed\",\r\n \"sid\": \"https://ps4499.vault.azure.net/secrets/ps4266/54d69a119764486cad9d5de00c34d0ed\",\r\n \"x5t\": \"HPXMWfj12ayr6xE4TIAvt61FDA4\",\r\n \"cer\": \"MIIDMjCCAhqgAwIBAgIQCycxvhmqSBqTTGKxvNjLcDANBgkqhkiG9w0BAQsFADAWMRQwEgYDVQQDEwt3d3cuYXBwLmNvbTAeFw0yMDAzMjYyMzIyMjdaFw0yMTAzMjYyMzMyMjdaMBYxFDASBgNVBAMTC3d3dy5hcHAuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0sZWUZmP/nDCAzdHjVZ5LXTm/8PRZ+q1P3ssrA1SlKJThGDRvOBFjHBu7CtOu2i2hAF44IRixf6ebVqRLK++MgU7DngyF5peRFSgy2PEo+n/hoFQNZj3ob9Be5ayheHPgTYwmfJESduY3sm0BTDgKlPDDnz9bzQJMgRijz5HDIi6qsI/bGyNdy+sACQ2rVrKTRyTz9P6Paq82yEVTjl2Vt/65AE6m7rs5tbPUzmosaFbmgJyzkdrI5hswN1xZ7ld56A/ZMOstm2kyzPB/fZXaHITI1EfQD0hZdjf9RLRGr0EI8yyjFwnJ3d3SI3a83O1AnqKwOlqdmoYTFFA8ddcDwIDAQABo3wwejAOBgNVHQ8BAf8EBAMCBaAwCQYDVR0TBAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwHwYDVR0jBBgwFoAURlG/xh58wy6TzFJ0RY7sv0Ouz9IwHQYDVR0OBBYEFEZRv8YefMMuk8xSdEWO7L9Drs/SMA0GCSqGSIb3DQEBCwUAA4IBAQBxjDForiXBKfNmiEvDIHFbpOHd2dMuKptEDzMaH+yHmtkWS+F8w2wyqAPFBCQwmSV2I2idYEcAKMiPOkbTor9UZ/QRJV5wlANNM17GGH10eKykrsHdSQEWjJ+bZVt8edqwsUm+u2+wbdR5Pn2G0LCY4+exmdi6SLMVXKGyAg8tTN9jEA2XvKTbWsMdIuB5wPJ0BLo8SshsMVPoyA1ZcakqZ3ZvJXnJf63ZLPbtBaXDS4K+0Qlh4oclSRAWWIklijl89ga1G/Bk2G/wOi03ORMBJr8re3oN8iotbwE8HCjXJ2e0+56RdyNxflfO8/IHKKE3Qm94v8m5JPzf1SoXUFPs\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1585264947,\r\n \"exp\": 1616801547,\r\n \"created\": 1585265547,\r\n \"updated\": 1585265547,\r\n \"recoveryLevel\": \"Recoverable+Purgeable\"\r\n },\r\n \"policy\": {\r\n \"id\": \"https://ps4499.vault.azure.net/certificates/ps4266/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=www.app.com\",\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 12,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"days_before_expiry\": 30\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1585265530,\r\n \"updated\": 1585265530\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://ps4499.vault.azure.net/certificates/ps4266/pending\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "//certificates/ps4660/?api-version=7.0", + "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvcHM0NjYwLz9hcGktdmVyc2lvbj03LjA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a269115b-a556-4c4f-b6d6-bb71f1ebefdb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.KeyVault.KeyVaultClient/3.0.520.10303" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-keyvault-region": [ + "West US 2" + ], + "x-ms-request-id": [ + "07c33a90-72af-47b1-84de-85529032f650" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.898" + ], + "x-ms-keyvault-network-info": [ + "addr=167.220.24.66;act_addr_fam=InterNetwork;" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2225" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://ps4499.vault.azure.net/certificates/ps4660/172b4aa6760f42ecbf705cdfd2764edd\",\r\n \"kid\": \"https://ps4499.vault.azure.net/keys/ps4660/172b4aa6760f42ecbf705cdfd2764edd\",\r\n \"sid\": \"https://ps4499.vault.azure.net/secrets/ps4660/172b4aa6760f42ecbf705cdfd2764edd\",\r\n \"x5t\": \"kdsZ3fBp0V_iLGd6kF5NDHLzwao\",\r\n \"cer\": \"MIIDMjCCAhqgAwIBAgIQQ4fbOMK4SLi/4/0z9WTkZTANBgkqhkiG9w0BAQsFADAWMRQwEgYDVQQDEwt3d3cuYXBwLmNvbTAeFw0yMDAzMjYyMzIyMjdaFw0yMTAzMjYyMzMyMjdaMBYxFDASBgNVBAMTC3d3dy5hcHAuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk0TMD6YDzZtGuAe3FaioktZ1jRhvfzynoGvhlfN4DUnXsc2A3JcWQzSB0ptKhxqtQRN0QfvhmVonglLYbMmIpf3JNVfdUxd/UJDkADemKc85/IADcPff+QV4GupQLMq2ipIJ5xUw9cTHqdM3efPVhxc+QIHwmP4/+0E/MOLZjqBaUEho9j4EpWGuFPsL5BoLRMDzqsDSfIPXb2LvnA5TNnoytgZKvvZfXIdHVqCj2tLbQiWXj5UiGaMy6TjGDfqPePcdW5rxfg9LwVU5c0u2rkZ+vj8FRGjNINL5geXUo2UAMAik2qjpcW0tDmWwYwDVycjeE9dhj6zcOBfWSlohRwIDAQABo3wwejAOBgNVHQ8BAf8EBAMCBaAwCQYDVR0TBAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwHwYDVR0jBBgwFoAU54m0K71yTQzMy698UA19l2wKd/4wHQYDVR0OBBYEFOeJtCu9ck0MzMuvfFANfZdsCnf+MA0GCSqGSIb3DQEBCwUAA4IBAQCCw2SacDUz3YMw4yb+yNqqgPRsJ90WkQey2d9iJPHtWD2kvwTw3Kuk6tcRHfg+DRYga+2twvn7qh+S7Z+j+Rne4etRaeVWKU2Tz6ApTSMVxCbn8/C2+wTLcOhpVsT6AUSMx/aaQb+Qv7Ug4CJmrlcRbC46COIx2BoCT45VdcZ0hUMLu7p6V1KqF1VVetcwZb0VX/FP91OonAOruQhMNOAoCrt6BkliuOmCLiXuszCQ00GLe7ZDYKs2Rr/5sCog+Ekux36AMcRJLE15N6S5YvMO0MBP/GV5a/N49XUHQacz9gbdvKRWkdIBzc/KNHClXUcTb6aAjj5iZj2jP240bIRd\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1585264947,\r\n \"exp\": 1616801547,\r\n \"created\": 1585265547,\r\n \"updated\": 1585265547,\r\n \"recoveryLevel\": \"Recoverable+Purgeable\"\r\n },\r\n \"policy\": {\r\n \"id\": \"https://ps4499.vault.azure.net/certificates/ps4660/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=www.app.com\",\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 12,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"days_before_expiry\": 30\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1585265531,\r\n \"updated\": 1585265531\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://ps4499.vault.azure.net/certificates/ps4660/pending\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTc2OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ddb95eab-ceee-4736-a08f-0aab641026e0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b5d130f0-b51d-42a8-8da9-879d09884cbe" + ], + "x-ms-correlation-request-id": [ + "b5d130f0-b51d-42a8-8da9-879d09884cbe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233242Z:b5d130f0-b51d-42a8-8da9-879d09884cbe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "150" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps1769' under resource group 'ps2103' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTc2OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"243f46cb-f9d7-4f46-869d-cf50718dabea\"" + ], + "x-ms-request-id": [ + "905424d7-ca1f-4a4d-b78b-7b1b23720fec" + ], + "x-ms-correlation-request-id": [ + "f60c04f6-e56f-44ba-9ffc-a905397d53eb" + ], + "x-ms-arm-service-request-id": [ + "ac2a1e26-b60e-4a22-98cd-521f95ed1bab" + ], + "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:20200326T233248Z:f60c04f6-e56f-44ba-9ffc-a905397d53eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:48 GMT" + ], + "Content-Length": [ + "1267" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1769\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769\",\r\n \"etag\": \"W/\\\"243f46cb-f9d7-4f46-869d-cf50718dabea\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a5f7a66b-595d-4835-bf4a-6601558a19f0\",\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\": \"ps735\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769/subnets/ps735\",\r\n \"etag\": \"W/\\\"243f46cb-f9d7-4f46-869d-cf50718dabea\\\"\",\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/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTc2OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec86ac7f-0336-4ad8-a2f0-ef36b1bf2214" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"243f46cb-f9d7-4f46-869d-cf50718dabea\"" + ], + "x-ms-request-id": [ + "2854cd8d-8449-4942-843e-73ef30d8229b" + ], + "x-ms-correlation-request-id": [ + "060317c8-7b1f-400d-a871-8ffd3f6fedfb" + ], + "x-ms-arm-service-request-id": [ + "fa47451f-2560-4670-8a5d-200e4871cb61" + ], + "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:20200326T233249Z:060317c8-7b1f-400d-a871-8ffd3f6fedfb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:48 GMT" + ], + "Content-Length": [ + "1267" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1769\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769\",\r\n \"etag\": \"W/\\\"243f46cb-f9d7-4f46-869d-cf50718dabea\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a5f7a66b-595d-4835-bf4a-6601558a19f0\",\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\": \"ps735\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769/subnets/ps735\",\r\n \"etag\": \"W/\\\"243f46cb-f9d7-4f46-869d-cf50718dabea\\\"\",\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/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTc2OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc9ecad4-cbc0-45bb-9097-7aead03f59d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"243f46cb-f9d7-4f46-869d-cf50718dabea\"" + ], + "x-ms-request-id": [ + "76e9c9c3-af40-4b77-8823-b6924430f92f" + ], + "x-ms-correlation-request-id": [ + "9d3c9d6e-fd8e-4d30-8d41-5fce5bbe3513" + ], + "x-ms-arm-service-request-id": [ + "480b5794-32ff-44e3-9789-58c3a20217e1" + ], + "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:20200326T233249Z:9d3c9d6e-fd8e-4d30-8d41-5fce5bbe3513" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:49 GMT" + ], + "Content-Length": [ + "1267" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1769\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769\",\r\n \"etag\": \"W/\\\"243f46cb-f9d7-4f46-869d-cf50718dabea\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a5f7a66b-595d-4835-bf4a-6601558a19f0\",\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\": \"ps735\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769/subnets/ps735\",\r\n \"etag\": \"W/\\\"243f46cb-f9d7-4f46-869d-cf50718dabea\\\"\",\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/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTc2OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "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\": \"ps735\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n },\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ad8cafd-78a1-4527-bd8c-ebc903bb29c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "621" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "3c9b1de8-b9ad-48b9-878a-282a7496ffcb" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/3c9b1de8-b9ad-48b9-878a-282a7496ffcb?api-version=2019-12-01" + ], + "x-ms-correlation-request-id": [ + "adbc1b2c-1eb6-4903-8c98-89024591ad1c" + ], + "x-ms-arm-service-request-id": [ + "31eeddc7-1687-4ff5-9361-7a80702a777f" + ], + "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:20200326T233245Z:adbc1b2c-1eb6-4903-8c98-89024591ad1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:45 GMT" + ], + "Content-Length": [ + "1265" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1769\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769\",\r\n \"etag\": \"W/\\\"49c9d165-ea7e-46a2-aa4d-797756cf6ba0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a5f7a66b-595d-4835-bf4a-6601558a19f0\",\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\": \"ps735\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769/subnets/ps735\",\r\n \"etag\": \"W/\\\"49c9d165-ea7e-46a2-aa4d-797756cf6ba0\\\"\",\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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/3c9b1de8-b9ad-48b9-878a-282a7496ffcb?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzNjOWIxZGU4LWI5YWQtNDhiOS04NzhhLTI4MmE3NDk2ZmZjYj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "85913a9d-97da-4a2c-bbeb-55a87171b718" + ], + "x-ms-correlation-request-id": [ + "299d8ebb-956b-461b-bbdc-7ba92a04cf5f" + ], + "x-ms-arm-service-request-id": [ + "c87f1cb5-b225-4594-af29-a378a4a26473" + ], + "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:20200326T233248Z:299d8ebb-956b-461b-bbdc-7ba92a04cf5f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:48 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxNTc1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7cbcbb0c-64d6-468f-a6ac-09600e6933b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "44d06e1d-34fb-4ce9-b682-fc05d9d58c5b" + ], + "x-ms-correlation-request-id": [ + "44d06e1d-34fb-4ce9-b682-fc05d9d58c5b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233249Z:44d06e1d-34fb-4ce9-b682-fc05d9d58c5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "152" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps1575' under resource group 'ps2103' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxNTc1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"52b1e9de-9f7c-4248-a80c-f361ded1fb9b\"" + ], + "x-ms-request-id": [ + "cd62d56c-5133-46e5-a942-b046824397fc" + ], + "x-ms-correlation-request-id": [ + "d974e055-6500-423b-8b31-e25db6ca694b" + ], + "x-ms-arm-service-request-id": [ + "d70e3e27-015d-4291-9703-b4f7f193fd82" + ], + "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:20200326T233251Z:d974e055-6500-423b-8b31-e25db6ca694b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:51 GMT" + ], + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1575\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575\",\r\n \"etag\": \"W/\\\"52b1e9de-9f7c-4248-a80c-f361ded1fb9b\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"47db0037-3db6-4c8d-a365-f6fefd2ba518\",\r\n \"ipAddress\": \"52.149.51.87\",\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/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxNTc1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "296ae57f-0d52-434a-adcc-2715e757483a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"52b1e9de-9f7c-4248-a80c-f361ded1fb9b\"" + ], + "x-ms-request-id": [ + "2e55a7f4-e330-4345-9b36-7f68a087e090" + ], + "x-ms-correlation-request-id": [ + "c63c122b-87c5-454a-b198-0afa45bec911" + ], + "x-ms-arm-service-request-id": [ + "8fba005b-345d-4b15-abae-c15306d7edcd" + ], + "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:20200326T233251Z:c63c122b-87c5-454a-b198-0afa45bec911" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:51 GMT" + ], + "Content-Length": [ + "629" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1575\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575\",\r\n \"etag\": \"W/\\\"52b1e9de-9f7c-4248-a80c-f361ded1fb9b\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"47db0037-3db6-4c8d-a365-f6fefd2ba518\",\r\n \"ipAddress\": \"52.149.51.87\",\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/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxNTc1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "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\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47e0ab8d-309d-4da9-a0a2-801988596f50" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "175" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "c13a410e-cdbb-4a64-9172-e578b534788a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/c13a410e-cdbb-4a64-9172-e578b534788a?api-version=2019-12-01" + ], + "x-ms-correlation-request-id": [ + "341e1230-6c48-4e93-88af-21e135a792a1" + ], + "x-ms-arm-service-request-id": [ + "8192c4b4-4f99-46ff-8301-ff4af208ca56" + ], + "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:20200326T233250Z:341e1230-6c48-4e93-88af-21e135a792a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:50 GMT" + ], + "Content-Length": [ + "594" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1575\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575\",\r\n \"etag\": \"W/\\\"eeadbfb8-b612-4eb5-9edc-562cd1903a55\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"47db0037-3db6-4c8d-a365-f6fefd2ba518\",\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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/c13a410e-cdbb-4a64-9172-e578b534788a?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2MxM2E0MTBlLWNkYmItNGE2NC05MTcyLWU1NzhiNTM0Nzg4YT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "71feabc3-fd8a-4ce0-b39e-ad8d6b93a058" + ], + "x-ms-correlation-request-id": [ + "0ed563d8-5c3f-4aa1-9a1f-218c5f802642" + ], + "x-ms-arm-service-request-id": [ + "8ff5c713-71ae-4a6f-bede-c14053a3cf07" + ], + "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:20200326T233251Z:0ed563d8-5c3f-4aa1-9a1f-218c5f802642" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:51 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczM3Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5055157d-6a4a-471f-b755-cbc377454b15" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "60df2563-91e8-4eef-9cef-f38cfad66aa9" + ], + "x-ms-correlation-request-id": [ + "60df2563-91e8-4eef-9cef-f38cfad66aa9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233251Z:60df2563-91e8-4eef-9cef-f38cfad66aa9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "153" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/applicationGateways/ps372' under resource group 'ps2103' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczM3Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\"" + ], + "x-ms-request-id": [ + "2ca10af1-dc1e-47a0-8d4b-3d0db96a03ea" + ], + "x-ms-correlation-request-id": [ + "d5c6ef6d-04e5-4664-96d0-dce6137eb1a0" + ], + "x-ms-arm-service-request-id": [ + "9e8bb230-772c-4d95-b0f1-6fa5547c149a" + ], + "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:20200326T233725Z:d5c6ef6d-04e5-4664-96d0-dce6137eb1a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:37:24 GMT" + ], + "Content-Length": [ + "8494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps372\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourcegroups/ps2103/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ps5071\": {\r\n \"principalId\": \"d61ea9e8-c23d-47dd-85cf-f89b1b4abb79\",\r\n \"clientId\": \"a9e5ed4c-3cff-41b6-9f62-e55004f56676\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fd3805d4-6e07-4daf-ad5e-176d01d4f35c\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps4599\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/gatewayIPConfigurations/ps4599\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769/subnets/ps735\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps4266\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/sslCertificates/ps4266\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"keyVaultSecretId\": \"https://ps4499.vault.azure.net:443/secrets/ps4266/\"\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps758\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps9264\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps7707\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n }\r\n ],\r\n \"loadDistributionPolicies\": [],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"ps6884\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps6481\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps968\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczM3Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65e48e22-3e93-4574-8506-cc1fef27273d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\"" + ], + "x-ms-request-id": [ + "4e1730b9-1cf7-4f2b-9bb0-81eb64e9c928" + ], + "x-ms-correlation-request-id": [ + "b826cf9d-233c-4071-b454-b7991789e3c8" + ], + "x-ms-arm-service-request-id": [ + "be2b036b-612e-454e-8ec3-ad3b8ad6c72a" + ], + "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:20200326T233725Z:b826cf9d-233c-4071-b454-b7991789e3c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:37:25 GMT" + ], + "Content-Length": [ + "8494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps372\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourcegroups/ps2103/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ps5071\": {\r\n \"principalId\": \"d61ea9e8-c23d-47dd-85cf-f89b1b4abb79\",\r\n \"clientId\": \"a9e5ed4c-3cff-41b6-9f62-e55004f56676\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fd3805d4-6e07-4daf-ad5e-176d01d4f35c\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps4599\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/gatewayIPConfigurations/ps4599\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769/subnets/ps735\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps4266\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/sslCertificates/ps4266\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"keyVaultSecretId\": \"https://ps4499.vault.azure.net:443/secrets/ps4266/\"\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps758\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps9264\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps7707\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n }\r\n ],\r\n \"loadDistributionPolicies\": [],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"ps6884\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps6481\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps968\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczM3Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea082b28-26fd-4b51-bd5f-9146d579a76c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\"" + ], + "x-ms-request-id": [ + "d3ea3eaa-9007-4ebb-a54a-555123c063ba" + ], + "x-ms-correlation-request-id": [ + "f19b75bb-e8da-4263-9719-dbedfbe6a8a5" + ], + "x-ms-arm-service-request-id": [ + "03466d5a-4593-4498-85c7-6a19edd7cc18" + ], + "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:20200326T233725Z:f19b75bb-e8da-4263-9719-dbedfbe6a8a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:37:25 GMT" + ], + "Content-Length": [ + "8494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps372\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourcegroups/ps2103/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ps5071\": {\r\n \"principalId\": \"d61ea9e8-c23d-47dd-85cf-f89b1b4abb79\",\r\n \"clientId\": \"a9e5ed4c-3cff-41b6-9f62-e55004f56676\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fd3805d4-6e07-4daf-ad5e-176d01d4f35c\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps4599\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/gatewayIPConfigurations/ps4599\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769/subnets/ps735\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps4266\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/sslCertificates/ps4266\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"keyVaultSecretId\": \"https://ps4499.vault.azure.net:443/secrets/ps4266/\"\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps758\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps9264\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps7707\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n }\r\n ],\r\n \"loadDistributionPolicies\": [],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"ps6884\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps6481\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps968\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\",\r\n \"etag\": \"W/\\\"0135c2ad-6f26-4406-8ed7-a8a6606aaa41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczM3Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\"" + ], + "x-ms-request-id": [ + "1f2ecc3e-eb07-4eae-b2c9-2462b2943c2c" + ], + "x-ms-correlation-request-id": [ + "a1c8eeaa-cb6f-4dd9-a931-ff7f9dc4300a" + ], + "x-ms-arm-service-request-id": [ + "603942ea-1801-4574-8f6a-bd39b763a0ac" + ], + "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:20200326T234239Z:a1c8eeaa-cb6f-4dd9-a931-ff7f9dc4300a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:42:38 GMT" + ], + "Content-Length": [ + "8494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps372\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourcegroups/ps2103/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ps5071\": {\r\n \"principalId\": \"d61ea9e8-c23d-47dd-85cf-f89b1b4abb79\",\r\n \"clientId\": \"a9e5ed4c-3cff-41b6-9f62-e55004f56676\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fd3805d4-6e07-4daf-ad5e-176d01d4f35c\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps4599\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/gatewayIPConfigurations/ps4599\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769/subnets/ps735\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps4266\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/sslCertificates/ps4266\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"keyVaultSecretId\": \"https://ps4499.vault.azure.net:443/secrets/ps4660/\"\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps758\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps9264\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps7707\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n }\r\n ],\r\n \"loadDistributionPolicies\": [],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"ps6884\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps6481\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps968\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczM3Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02a578bd-c96c-44d4-a4e7-e6090b5c6d75" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\"" + ], + "x-ms-request-id": [ + "ed5a41bd-b811-4607-8242-f1d860a5d12d" + ], + "x-ms-correlation-request-id": [ + "f25d17fb-eee2-42db-992f-305b959d0b92" + ], + "x-ms-arm-service-request-id": [ + "32cd17c0-baac-466d-841b-d37491241d50" + ], + "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:20200326T234239Z:f25d17fb-eee2-42db-992f-305b959d0b92" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:42:38 GMT" + ], + "Content-Length": [ + "8494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps372\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourcegroups/ps2103/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ps5071\": {\r\n \"principalId\": \"d61ea9e8-c23d-47dd-85cf-f89b1b4abb79\",\r\n \"clientId\": \"a9e5ed4c-3cff-41b6-9f62-e55004f56676\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fd3805d4-6e07-4daf-ad5e-176d01d4f35c\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps4599\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/gatewayIPConfigurations/ps4599\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769/subnets/ps735\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps4266\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/sslCertificates/ps4266\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"keyVaultSecretId\": \"https://ps4499.vault.azure.net:443/secrets/ps4660/\"\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps758\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps9264\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps7707\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n }\r\n ],\r\n \"loadDistributionPolicies\": [],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"ps6884\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps6481\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps968\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\",\r\n \"etag\": \"W/\\\"c1b0098c-dc52-4a47-8f06-e8e203d60c35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczM3Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769/subnets/ps735\"\r\n }\r\n },\r\n \"name\": \"ps4599\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/gatewayIpConfigurations/ps4599\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"sslCertificates\": [\r\n {\r\n \"properties\": {\r\n \"keyVaultSecretId\": \"https://ps4499.vault.azure.net:443/secrets/ps4266/\"\r\n },\r\n \"name\": \"ps4266\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/sslCertificates/ps4266\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575\"\r\n }\r\n },\r\n \"name\": \"ps758\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIpConfigurations/ps758\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"ps9264\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\"\r\n }\r\n ],\r\n \"probes\": [],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"10.0.0.1\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps7707\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"pickHostNameFromBackendAddress\": true\r\n },\r\n \"name\": \"ps6884\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIpConfigurations/ps758\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"hostNames\": []\r\n },\r\n \"name\": \"ps6481\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n },\r\n \"name\": \"ps968\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"customErrorConfigurations\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourcegroups/ps2103/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ps5071\": {}\r\n }\r\n },\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b3f351c0-3aeb-4df7-b34b-bba47825135f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "5181" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a1b91c69-49f3-4426-94a2-f94493880984" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01" + ], + "x-ms-correlation-request-id": [ + "40f29fda-170a-4787-a66d-40d0e8108594" + ], + "x-ms-arm-service-request-id": [ + "d19d5cf9-d479-483d-8768-83638902c445" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233253Z:40f29fda-170a-4787-a66d-40d0e8108594" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:32:53 GMT" + ], + "Content-Length": [ + "8353" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps372\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372\",\r\n \"etag\": \"W/\\\"03e2d0c8-7b65-4637-b33d-1f1f8dbd6731\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourcegroups/ps2103/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ps5071\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fd3805d4-6e07-4daf-ad5e-176d01d4f35c\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps4599\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/gatewayIPConfigurations/ps4599\",\r\n \"etag\": \"W/\\\"03e2d0c8-7b65-4637-b33d-1f1f8dbd6731\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769/subnets/ps735\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps4266\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/sslCertificates/ps4266\",\r\n \"etag\": \"W/\\\"03e2d0c8-7b65-4637-b33d-1f1f8dbd6731\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"keyVaultSecretId\": \"https://ps4499.vault.azure.net:443/secrets/ps4266/\"\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps758\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\",\r\n \"etag\": \"W/\\\"03e2d0c8-7b65-4637-b33d-1f1f8dbd6731\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps9264\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\",\r\n \"etag\": \"W/\\\"03e2d0c8-7b65-4637-b33d-1f1f8dbd6731\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps7707\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\",\r\n \"etag\": \"W/\\\"03e2d0c8-7b65-4637-b33d-1f1f8dbd6731\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n }\r\n ],\r\n \"loadDistributionPolicies\": [],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"ps6884\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\",\r\n \"etag\": \"W/\\\"03e2d0c8-7b65-4637-b33d-1f1f8dbd6731\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps6481\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\",\r\n \"etag\": \"W/\\\"03e2d0c8-7b65-4637-b33d-1f1f8dbd6731\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps968\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\",\r\n \"etag\": \"W/\\\"03e2d0c8-7b65-4637-b33d-1f1f8dbd6731\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczM3Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769/subnets/ps735\"\r\n }\r\n },\r\n \"name\": \"ps4599\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/gatewayIPConfigurations/ps4599\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"sslCertificates\": [\r\n {\r\n \"properties\": {\r\n \"keyVaultSecretId\": \"https://ps4499.vault.azure.net:443/secrets/ps4660/\"\r\n },\r\n \"name\": \"ps4266\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/sslCertificates/ps4266\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575\"\r\n }\r\n },\r\n \"name\": \"ps758\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"ps9264\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\"\r\n }\r\n ],\r\n \"probes\": [],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"10.0.0.1\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps7707\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"pickHostNameFromBackendAddress\": true\r\n },\r\n \"name\": \"ps6884\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"hostNames\": []\r\n },\r\n \"name\": \"ps6481\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n },\r\n \"name\": \"ps968\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"customErrorConfigurations\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourcegroups/ps2103/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ps5071\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372\",\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cdc2b79b-0c9b-4d12-828e-f5281232144c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "5370" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dbbaf020-cc4f-4199-8c48-6806f3784541" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01" + ], + "x-ms-correlation-request-id": [ + "c0f22762-d7c9-439d-b43e-65f41a221fa9" + ], + "x-ms-arm-service-request-id": [ + "8ef5d6c7-31c7-4f4a-abcb-0f55fe12b574" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233727Z:c0f22762-d7c9-439d-b43e-65f41a221fa9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:37:26 GMT" + ], + "Content-Length": [ + "8353" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps372\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372\",\r\n \"etag\": \"W/\\\"b8a304b1-621c-48e8-a3a9-d4ada4d456b3\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourcegroups/ps2103/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ps5071\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fd3805d4-6e07-4daf-ad5e-176d01d4f35c\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps4599\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/gatewayIPConfigurations/ps4599\",\r\n \"etag\": \"W/\\\"b8a304b1-621c-48e8-a3a9-d4ada4d456b3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/virtualNetworks/ps1769/subnets/ps735\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps4266\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/sslCertificates/ps4266\",\r\n \"etag\": \"W/\\\"b8a304b1-621c-48e8-a3a9-d4ada4d456b3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"keyVaultSecretId\": \"https://ps4499.vault.azure.net:443/secrets/ps4660/\"\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps758\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\",\r\n \"etag\": \"W/\\\"b8a304b1-621c-48e8-a3a9-d4ada4d456b3\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/publicIPAddresses/ps1575\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps9264\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\",\r\n \"etag\": \"W/\\\"b8a304b1-621c-48e8-a3a9-d4ada4d456b3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps7707\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\",\r\n \"etag\": \"W/\\\"b8a304b1-621c-48e8-a3a9-d4ada4d456b3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n }\r\n ],\r\n \"loadDistributionPolicies\": [],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"ps6884\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\",\r\n \"etag\": \"W/\\\"b8a304b1-621c-48e8-a3a9-d4ada4d456b3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps6481\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\",\r\n \"etag\": \"W/\\\"b8a304b1-621c-48e8-a3a9-d4ada4d456b3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendIPConfigurations/ps758\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/frontendPorts/ps9264\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps968\",\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/requestRoutingRules/ps968\",\r\n \"etag\": \"W/\\\"b8a304b1-621c-48e8-a3a9-d4ada4d456b3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/httpListeners/ps6481\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendAddressPools/ps7707\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372/backendHttpSettingsCollection/ps6884\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a38b0ef2-06c3-4869-89c7-79e6f1d203ef" + ], + "x-ms-correlation-request-id": [ + "cb2454c1-ec5b-4494-9fe5-47df19c09ce7" + ], + "x-ms-arm-service-request-id": [ + "d7b7e451-8d3f-41b9-89ef-80112f168133" + ], + "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:20200326T233303Z:cb2454c1-ec5b-4494-9fe5-47df19c09ce7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:33: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "28678439-e8a5-45c6-a720-6ddba9a4483b" + ], + "x-ms-correlation-request-id": [ + "f2e17597-4d69-405a-8e11-c0601f3584f8" + ], + "x-ms-arm-service-request-id": [ + "2355ed01-eb56-4296-8307-302f441ac441" + ], + "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:20200326T233313Z:f2e17597-4d69-405a-8e11-c0601f3584f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:33: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "961500bd-fe5b-4553-9df6-aafb712c9bf8" + ], + "x-ms-correlation-request-id": [ + "388ab5fc-9502-43a6-8e18-c5e8b76b41a5" + ], + "x-ms-arm-service-request-id": [ + "d1d72a9f-f674-47a6-85f4-9473c0d024d6" + ], + "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:20200326T233323Z:388ab5fc-9502-43a6-8e18-c5e8b76b41a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:33: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "16a80606-08bb-4425-9efd-9d8f6994d397" + ], + "x-ms-correlation-request-id": [ + "00279188-b35b-4b1d-aec2-a3a7d7b85dab" + ], + "x-ms-arm-service-request-id": [ + "210551b0-72f1-4c6a-8b8a-e22031ed2e40" + ], + "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:20200326T233333Z:00279188-b35b-4b1d-aec2-a3a7d7b85dab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:33: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "695e71ae-85bf-4f2a-a81e-b6bb1e145968" + ], + "x-ms-correlation-request-id": [ + "70a4c94f-2818-4bc6-bc86-fbc88826dafa" + ], + "x-ms-arm-service-request-id": [ + "97d0eb90-1f10-456e-a064-2aec58830118" + ], + "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:20200326T233343Z:70a4c94f-2818-4bc6-bc86-fbc88826dafa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e556ac5e-e8cc-4fae-b3d1-720a580eeea2" + ], + "x-ms-correlation-request-id": [ + "4d5b1324-b603-4cc3-bb13-fbb469b36479" + ], + "x-ms-arm-service-request-id": [ + "1159b049-03f1-4b59-870e-4ef210958b86" + ], + "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:20200326T233354Z:4d5b1324-b603-4cc3-bb13-fbb469b36479" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:33: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "29ed4a50-6d14-4a98-8397-15ee131c0bb0" + ], + "x-ms-correlation-request-id": [ + "68ac9ded-220b-42bd-9030-9ae4d761affb" + ], + "x-ms-arm-service-request-id": [ + "307154a8-c55c-46e2-a34d-4a2fc2ee4052" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233404Z:68ac9ded-220b-42bd-9030-9ae4d761affb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:34: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ce9be2a3-50c5-4efc-befa-25b9c33964f2" + ], + "x-ms-correlation-request-id": [ + "efb49e23-351a-4fa4-955e-f57afbea6885" + ], + "x-ms-arm-service-request-id": [ + "4d446fb7-f2d3-446e-9199-146e4ef4f9bd" + ], + "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:20200326T233414Z:efb49e23-351a-4fa4-955e-f57afbea6885" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:34: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4770aeba-82c7-4add-91a6-f61b74eac5a3" + ], + "x-ms-correlation-request-id": [ + "8a69da3f-a614-4321-8181-3594a729967d" + ], + "x-ms-arm-service-request-id": [ + "940c0b11-4db8-48f9-aad7-028cce1f1e3f" + ], + "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:20200326T233424Z:8a69da3f-a614-4321-8181-3594a729967d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:34: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c779110e-bb42-4438-9938-e70c2c5886bc" + ], + "x-ms-correlation-request-id": [ + "6c304185-52ec-43fd-a4e6-1ea2113c9578" + ], + "x-ms-arm-service-request-id": [ + "e6bbf2df-0b9f-4d92-87c8-b4852accd889" + ], + "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:20200326T233434Z:6c304185-52ec-43fd-a4e6-1ea2113c9578" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:34: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4fc674cf-9e2d-4f5e-a552-7de1291851d4" + ], + "x-ms-correlation-request-id": [ + "52970794-2ffd-42d6-9fa8-334e60c8eab9" + ], + "x-ms-arm-service-request-id": [ + "0d36a749-3f59-4669-855d-b99cf2b1bc2c" + ], + "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:20200326T233444Z:52970794-2ffd-42d6-9fa8-334e60c8eab9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:34: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6bf46604-a1d9-425b-b10d-938c05ac472f" + ], + "x-ms-correlation-request-id": [ + "f5d52c52-0b1c-4c31-9b5f-9810c88aacb4" + ], + "x-ms-arm-service-request-id": [ + "2e3169af-1a68-4e7a-8511-0af4e078e2e6" + ], + "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:20200326T233454Z:f5d52c52-0b1c-4c31-9b5f-9810c88aacb4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:34: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cee9aa22-b3ee-4d3e-90cb-b3c2edca3f01" + ], + "x-ms-correlation-request-id": [ + "dc722091-ef17-4ea1-b5b1-405136df8015" + ], + "x-ms-arm-service-request-id": [ + "e776304f-ae0c-446b-b072-1fdd6ef48c56" + ], + "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:20200326T233504Z:dc722091-ef17-4ea1-b5b1-405136df8015" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:35: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "52fc204b-d486-4a22-9b7e-f47e602356b6" + ], + "x-ms-correlation-request-id": [ + "cbbebde0-669f-49a9-b8c6-61ec97e9e16c" + ], + "x-ms-arm-service-request-id": [ + "8f106db5-8255-46c2-b85b-01076968055c" + ], + "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:20200326T233514Z:cbbebde0-669f-49a9-b8c6-61ec97e9e16c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:35:14 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c663a78d-8d27-4d2f-adca-42d29bb2aedf" + ], + "x-ms-correlation-request-id": [ + "11df1f0d-063d-4f8a-8d2b-e12365a831cf" + ], + "x-ms-arm-service-request-id": [ + "ebd46ed7-afac-49e6-8e37-d027cb32fd02" + ], + "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:20200326T233524Z:11df1f0d-063d-4f8a-8d2b-e12365a831cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:35: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ea16c798-ce2a-4c7b-8ed2-0bbfea09c0af" + ], + "x-ms-correlation-request-id": [ + "38460f96-8876-43a3-a512-e9b35291e8f5" + ], + "x-ms-arm-service-request-id": [ + "bd05b676-28d7-4271-81bc-f4fce5b4e1ba" + ], + "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:20200326T233534Z:38460f96-8876-43a3-a512-e9b35291e8f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:35:34 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "52c8f12f-ce03-4b21-ae3b-1a0484590605" + ], + "x-ms-correlation-request-id": [ + "bc411b6b-5d74-48e1-95f9-ab9941d422a5" + ], + "x-ms-arm-service-request-id": [ + "aef31599-9cff-4abc-a022-b5be16257fde" + ], + "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:20200326T233544Z:bc411b6b-5d74-48e1-95f9-ab9941d422a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:35: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "92b3d5b2-7739-453a-b73d-bcb54380562c" + ], + "x-ms-correlation-request-id": [ + "b1ce00c1-53bf-4cdf-a253-589e6f553ede" + ], + "x-ms-arm-service-request-id": [ + "70ca2e8f-faa4-4e99-932a-ec05caa7c6cc" + ], + "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:20200326T233554Z:b1ce00c1-53bf-4cdf-a253-589e6f553ede" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:35: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d7ba1061-1279-46f0-8417-5bfb3277b359" + ], + "x-ms-correlation-request-id": [ + "dba95894-612c-4b29-9187-01ad7d254bf4" + ], + "x-ms-arm-service-request-id": [ + "fbed6e8c-9e3e-4e12-9662-0a2ebee542a8" + ], + "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:20200326T233604Z:dba95894-612c-4b29-9187-01ad7d254bf4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:36: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6b122a50-bbd8-4983-8275-df33d543031e" + ], + "x-ms-correlation-request-id": [ + "4d08fcfe-6824-45d4-bba5-87951d1b81bc" + ], + "x-ms-arm-service-request-id": [ + "3d23038a-48b6-4777-b7ec-4ca8d13ce148" + ], + "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:20200326T233614Z:4d08fcfe-6824-45d4-bba5-87951d1b81bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:36:14 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "aa245faf-8a81-4991-9188-40341b1d2c04" + ], + "x-ms-correlation-request-id": [ + "fa1b61a1-5881-4d6c-806c-acd9eec438a7" + ], + "x-ms-arm-service-request-id": [ + "5c4dbadc-0c4e-466b-97c3-cca71950e01a" + ], + "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:20200326T233625Z:fa1b61a1-5881-4d6c-806c-acd9eec438a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:36: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "072ea38d-b48e-4523-a344-899f1b83f7e7" + ], + "x-ms-correlation-request-id": [ + "0ce72366-8dd3-489c-9e68-d7fb88429dcc" + ], + "x-ms-arm-service-request-id": [ + "bd2f9387-8420-4cc8-b3f6-d5dfcb1b7278" + ], + "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:20200326T233635Z:0ce72366-8dd3-489c-9e68-d7fb88429dcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:36:34 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bc53f04b-3318-49da-873a-8fe0013523ad" + ], + "x-ms-correlation-request-id": [ + "6cd131d0-dce5-4937-94de-b487f7ad2fae" + ], + "x-ms-arm-service-request-id": [ + "cb9ae14f-b7f1-427e-8f00-4d1926d2ef3f" + ], + "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:20200326T233645Z:6cd131d0-dce5-4937-94de-b487f7ad2fae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:36: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c3202396-10ea-4e77-8eb6-feca6bf04357" + ], + "x-ms-correlation-request-id": [ + "86658443-b2c2-43a2-80e4-5a20efed9d4d" + ], + "x-ms-arm-service-request-id": [ + "92e06194-b769-4807-b815-a154c99b4cf4" + ], + "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:20200326T233655Z:86658443-b2c2-43a2-80e4-5a20efed9d4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:36: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d3c6f937-ff90-480e-aee8-f3ea2e8f38e5" + ], + "x-ms-correlation-request-id": [ + "a60d57bf-0b7d-4400-aadf-d2348e591b43" + ], + "x-ms-arm-service-request-id": [ + "dff0ab1a-3d6c-4c80-96bc-b29527621f5b" + ], + "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:20200326T233705Z:a60d57bf-0b7d-4400-aadf-d2348e591b43" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:37: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "39d22afd-b601-4c55-bae3-dfa4482400e5" + ], + "x-ms-correlation-request-id": [ + "085f4282-ea5c-42b1-a619-64aabae708a2" + ], + "x-ms-arm-service-request-id": [ + "7c528018-f9a0-4a36-a704-cb707789b8ed" + ], + "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:20200326T233715Z:085f4282-ea5c-42b1-a619-64aabae708a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:37:14 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/a1b91c69-49f3-4426-94a2-f94493880984?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2ExYjkxYzY5LTQ5ZjMtNDQyNi05NGEyLWY5NDQ5Mzg4MDk4ND9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8881f37b-f3db-4c38-9249-0fa8fb209e65" + ], + "x-ms-correlation-request-id": [ + "2db552e0-4e5c-4b3a-959d-1c915a06dd41" + ], + "x-ms-arm-service-request-id": [ + "356c22db-1f45-4bc3-8e34-bb936b863284" + ], + "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:20200326T233725Z:2db552e0-4e5c-4b3a-959d-1c915a06dd41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:37: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b2f5dfd1-0fef-4260-ae43-cd67fe6151c5" + ], + "x-ms-correlation-request-id": [ + "05c1dd38-25d3-4f03-91f9-f9802c3efc5e" + ], + "x-ms-arm-service-request-id": [ + "37829367-0b4f-41f5-b947-f9abd7192faf" + ], + "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:20200326T233737Z:05c1dd38-25d3-4f03-91f9-f9802c3efc5e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:37: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "18d33f1a-1ae9-4895-806d-dc1c2dd42f84" + ], + "x-ms-correlation-request-id": [ + "ea801f8c-6557-436c-8cb7-4530459fcb44" + ], + "x-ms-arm-service-request-id": [ + "74c216f3-95ea-41a6-979a-af821a3f5188" + ], + "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:20200326T233747Z:ea801f8c-6557-436c-8cb7-4530459fcb44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:37: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ced8e931-7d35-462f-baf0-14a5c3b4a914" + ], + "x-ms-correlation-request-id": [ + "6bc72b80-b592-44db-9d64-8111702a047a" + ], + "x-ms-arm-service-request-id": [ + "708eddba-1beb-467a-aedd-57c1859bece8" + ], + "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:20200326T233757Z:6bc72b80-b592-44db-9d64-8111702a047a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:37: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "24779fba-d5e0-441c-8769-fa2e16a68fbe" + ], + "x-ms-correlation-request-id": [ + "e652565b-009c-43c3-b0c5-cc4131a96ec4" + ], + "x-ms-arm-service-request-id": [ + "378b97e0-6c6c-49d7-8602-9a51409cf3ee" + ], + "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:20200326T233807Z:e652565b-009c-43c3-b0c5-cc4131a96ec4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:38: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "77e6671e-4b8d-4b1d-9028-95eea5d8cad3" + ], + "x-ms-correlation-request-id": [ + "4eaad404-901b-48f1-9c48-c822780ece99" + ], + "x-ms-arm-service-request-id": [ + "f6f2d8f2-1efe-464d-a612-4c4249d143ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233817Z:4eaad404-901b-48f1-9c48-c822780ece99" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:38: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6679e585-ba8c-4d69-985f-0545cdb49977" + ], + "x-ms-correlation-request-id": [ + "109d00ba-4c0e-4789-8ecc-cb93e7481051" + ], + "x-ms-arm-service-request-id": [ + "c5204eee-81cd-45b8-a77f-0cf6e511d9ad" + ], + "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:20200326T233827Z:109d00ba-4c0e-4789-8ecc-cb93e7481051" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:38: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f1c985cc-d3b2-45e0-ae2a-807480671048" + ], + "x-ms-correlation-request-id": [ + "9f705efc-dada-4bde-8360-5719e5312009" + ], + "x-ms-arm-service-request-id": [ + "bcba60a1-3935-4074-908d-da938f51af85" + ], + "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:20200326T233837Z:9f705efc-dada-4bde-8360-5719e5312009" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:38: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e55566b7-58f7-46fb-9c06-1a55328c0c00" + ], + "x-ms-correlation-request-id": [ + "3dc2ac29-1522-4f5f-9f4d-2bfda62d326d" + ], + "x-ms-arm-service-request-id": [ + "ff2c2117-354d-4ce4-8dd1-332c1c4b4343" + ], + "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:20200326T233847Z:3dc2ac29-1522-4f5f-9f4d-2bfda62d326d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:38: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bccfd733-d4d1-4216-97a2-e3ccce05da69" + ], + "x-ms-correlation-request-id": [ + "79b68321-2fe4-4828-95ae-a23699cf7fbb" + ], + "x-ms-arm-service-request-id": [ + "7d19cdc1-c366-465b-92ce-266e3748d5fc" + ], + "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:20200326T233857Z:79b68321-2fe4-4828-95ae-a23699cf7fbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:38: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4184b0c2-beb8-452d-ac7d-ba02d76cba8a" + ], + "x-ms-correlation-request-id": [ + "7e14b4be-5039-4abf-aeed-c9f9ae3ce6a6" + ], + "x-ms-arm-service-request-id": [ + "9727ce77-1cb9-423f-9854-a46cd0c2dc3a" + ], + "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:20200326T233907Z:7e14b4be-5039-4abf-aeed-c9f9ae3ce6a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:39: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bcb0ddc6-672f-4532-b1e2-d9063695480c" + ], + "x-ms-correlation-request-id": [ + "2276afa7-3452-42b2-99b7-f482b0acf345" + ], + "x-ms-arm-service-request-id": [ + "300db048-1161-4b83-8ab1-94e57d36e995" + ], + "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:20200326T233917Z:2276afa7-3452-42b2-99b7-f482b0acf345" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:39: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6edd9a8f-64c3-474f-9b2a-d86d0343e89b" + ], + "x-ms-correlation-request-id": [ + "54f31ef1-6068-4f53-88fd-0d27c00688f8" + ], + "x-ms-arm-service-request-id": [ + "dd15f2af-0733-4d19-9c9a-41717a8e99dd" + ], + "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:20200326T233927Z:54f31ef1-6068-4f53-88fd-0d27c00688f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:39: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3ac93629-0ff6-41c0-a84a-849b4c7241d0" + ], + "x-ms-correlation-request-id": [ + "eb2829f6-5c7e-4a58-9f8f-1223adda8145" + ], + "x-ms-arm-service-request-id": [ + "68812d66-2ff2-46f0-b998-59beb6d1e2a6" + ], + "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:20200326T233938Z:eb2829f6-5c7e-4a58-9f8f-1223adda8145" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:39: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "832aa8c2-c485-4c08-b756-7256d302ade8" + ], + "x-ms-correlation-request-id": [ + "d8d10ff0-0833-4007-a1e8-1ec38a91cb7b" + ], + "x-ms-arm-service-request-id": [ + "60478e7d-f685-4f3d-ba34-31e76b62a82e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T233948Z:d8d10ff0-0833-4007-a1e8-1ec38a91cb7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:39: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "387ac457-0410-4091-bb63-2a70ed27b2a0" + ], + "x-ms-correlation-request-id": [ + "fcd774b0-21ef-42a8-8f71-f1575daa22fd" + ], + "x-ms-arm-service-request-id": [ + "cec362f9-b735-4d88-9ea9-70bd49440145" + ], + "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:20200326T233958Z:fcd774b0-21ef-42a8-8f71-f1575daa22fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:39: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "75c96095-cee8-4e99-a284-0352c07585fb" + ], + "x-ms-correlation-request-id": [ + "50769c4b-2d42-4713-903c-509608ca1380" + ], + "x-ms-arm-service-request-id": [ + "f708f5cc-529e-4613-b1db-36abb469c21c" + ], + "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:20200326T234008Z:50769c4b-2d42-4713-903c-509608ca1380" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:40: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5a977815-4efa-4bc9-a5d9-28880a7254c9" + ], + "x-ms-correlation-request-id": [ + "ec4cdc14-be27-4505-a32e-569c528d2566" + ], + "x-ms-arm-service-request-id": [ + "e5d14890-2e4e-4130-9b0e-49fe171a6e9f" + ], + "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:20200326T234018Z:ec4cdc14-be27-4505-a32e-569c528d2566" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:40: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b99a51f4-94c7-4b5e-b722-6c859a9c72ca" + ], + "x-ms-correlation-request-id": [ + "d7c53b4f-6a02-4703-97a4-9d78957a093d" + ], + "x-ms-arm-service-request-id": [ + "b9b8478f-7294-4963-af0a-91c588837426" + ], + "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:20200326T234028Z:d7c53b4f-6a02-4703-97a4-9d78957a093d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:40: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b967cc93-7faa-4831-b0fc-44d5b2c6b5d3" + ], + "x-ms-correlation-request-id": [ + "a7c5e1e3-d89d-41b7-b948-e860d43c2a9a" + ], + "x-ms-arm-service-request-id": [ + "65386650-4ccd-40ec-a538-083adf99d7fc" + ], + "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:20200326T234038Z:a7c5e1e3-d89d-41b7-b948-e860d43c2a9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:40: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "32f466aa-1480-4f58-aa4d-815cf4c0996f" + ], + "x-ms-correlation-request-id": [ + "fcf5d31f-70ba-4f71-8a53-047b95c6b614" + ], + "x-ms-arm-service-request-id": [ + "7af991b5-c433-4516-b0e4-2c2468de9e13" + ], + "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:20200326T234048Z:fcf5d31f-70ba-4f71-8a53-047b95c6b614" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:40: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e8e197b8-6414-4c8d-a3a7-0b54f6b4c754" + ], + "x-ms-correlation-request-id": [ + "1fc999a8-8f88-4010-8f69-dc316bb40ae4" + ], + "x-ms-arm-service-request-id": [ + "f9b05254-cfa2-49c4-810c-dd724e344261" + ], + "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:20200326T234058Z:1fc999a8-8f88-4010-8f69-dc316bb40ae4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:40: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "844ae606-e73b-4205-8242-21a869b13646" + ], + "x-ms-correlation-request-id": [ + "56508683-1165-414c-ac84-cdc0754858d4" + ], + "x-ms-arm-service-request-id": [ + "15b34463-e6c7-4d55-8781-15f55bc637ca" + ], + "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:20200326T234108Z:56508683-1165-414c-ac84-cdc0754858d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:41: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "33c3c5e2-e885-4653-97f5-6b36c8232439" + ], + "x-ms-correlation-request-id": [ + "6134082d-1763-4ed3-9468-e79e21cec8df" + ], + "x-ms-arm-service-request-id": [ + "dca76ab8-9b64-4ec5-affd-1910f19bc35f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T234118Z:6134082d-1763-4ed3-9468-e79e21cec8df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:41: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0ec38a89-5fb8-4166-9232-46b33d7d3e48" + ], + "x-ms-correlation-request-id": [ + "a5933317-21dc-4f06-90e8-137ef8776e05" + ], + "x-ms-arm-service-request-id": [ + "2414d1f6-689f-484f-820e-855fdcabebcd" + ], + "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:20200326T234128Z:a5933317-21dc-4f06-90e8-137ef8776e05" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:41: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d7a4ab2b-5c99-4748-8341-e933d53163af" + ], + "x-ms-correlation-request-id": [ + "69f7e9cd-7db1-4623-806a-5252d3cdd6fb" + ], + "x-ms-arm-service-request-id": [ + "3835a192-e769-48f8-907e-c5e72cb4d399" + ], + "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:20200326T234138Z:69f7e9cd-7db1-4623-806a-5252d3cdd6fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:41: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "93f1d8f6-3791-4ae8-9f1c-f9ce98830262" + ], + "x-ms-correlation-request-id": [ + "92b8107c-cf8b-453b-a04f-28312a0c6d1e" + ], + "x-ms-arm-service-request-id": [ + "42d9ca55-9838-41fa-9101-3d2004957343" + ], + "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:20200326T234148Z:92b8107c-cf8b-453b-a04f-28312a0c6d1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:41: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "894dbecb-cae4-4c14-bbb5-6f3781fe5168" + ], + "x-ms-correlation-request-id": [ + "ba45b896-e75d-4950-ab28-450ba15fe6f5" + ], + "x-ms-arm-service-request-id": [ + "2d4e1b60-d7e4-418a-9c59-51ca916b592d" + ], + "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:20200326T234158Z:ba45b896-e75d-4950-ab28-450ba15fe6f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:41: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "97d9c02b-80ea-46d7-89be-6ed1229f0c90" + ], + "x-ms-correlation-request-id": [ + "158e355b-396d-4436-9e14-1ec345237a5f" + ], + "x-ms-arm-service-request-id": [ + "52e45127-4e1e-43af-9ff3-905085aa26ed" + ], + "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:20200326T234209Z:158e355b-396d-4436-9e14-1ec345237a5f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:42: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "58281fd2-39c2-43f1-abad-630ee9c660d8" + ], + "x-ms-correlation-request-id": [ + "7dc1bc45-4bd2-49dd-95dd-fd989e56e837" + ], + "x-ms-arm-service-request-id": [ + "e6bf0f1d-aebb-4876-a9f2-3fa31092d69b" + ], + "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:20200326T234219Z:7dc1bc45-4bd2-49dd-95dd-fd989e56e837" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:42: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a3264dee-a35f-42d6-89c1-d01537b36602" + ], + "x-ms-correlation-request-id": [ + "c57578f0-6047-4a2b-aa0f-f11216dcdf7a" + ], + "x-ms-arm-service-request-id": [ + "b74241bd-36c3-4ed0-9c59-1b5e5ef5ed5a" + ], + "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:20200326T234229Z:c57578f0-6047-4a2b-aa0f-f11216dcdf7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:42: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/dbbaf020-cc4f-4199-8c48-6806f3784541?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2RiYmFmMDIwLWNjNGYtNDE5OS04YzQ4LTY4MDZmMzc4NDU0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4636335c-d5bd-4e69-9872-ccf763d6ee88" + ], + "x-ms-correlation-request-id": [ + "648f188d-a35c-4f94-ba2f-8c90d63dc0a0" + ], + "x-ms-arm-service-request-id": [ + "ed89fd32-4178-4e30-bc3c-4bea748d20c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T234239Z:648f188d-a35c-4f94-ba2f-8c90d63dc0a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:42: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/86501df2-2fc5-4fc3-b193-d305572e416f/resourceGroups/ps2103/providers/Microsoft.Network/applicationGateways/ps372?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlR3JvdXBzL3BzMjEwMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczM3Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5af8dd56-e5f1-4540-9dcd-ca7fc0930c3b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operationResults/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7a94253e-8cff-4920-b448-6fc7ecb0f13d" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01" + ], + "x-ms-correlation-request-id": [ + "36ff7b32-5a22-481b-8c0a-e24350ece0bc" + ], + "x-ms-arm-service-request-id": [ + "95ed04ab-9fa2-4c2c-bb25-92d8282a3dc0" + ], + "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:20200326T234239Z:36ff7b32-5a22-481b-8c0a-e24350ece0bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:42:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c84e8b08-06a8-4a96-bc66-34a0460e1e52" + ], + "x-ms-correlation-request-id": [ + "ac8778b1-f63c-449f-b9b6-cc239cbbbb05" + ], + "x-ms-arm-service-request-id": [ + "f52934f4-2439-4151-9b10-dfd819482472" + ], + "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:20200326T234250Z:ac8778b1-f63c-449f-b9b6-cc239cbbbb05" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:42: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ee7b5d99-573c-4292-a149-1617a8a90384" + ], + "x-ms-correlation-request-id": [ + "56ba248b-1d98-48c2-97a6-d1800994928e" + ], + "x-ms-arm-service-request-id": [ + "b7cbafbc-e9d0-46d7-a509-c8208a7d4af2" + ], + "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:20200326T234300Z:56ba248b-1d98-48c2-97a6-d1800994928e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:42: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ece404ff-4f01-4950-9b96-ebabcd25130b" + ], + "x-ms-correlation-request-id": [ + "eb949665-a947-4b26-9bf8-b7787325d373" + ], + "x-ms-arm-service-request-id": [ + "30cbbe49-3728-4bb6-931d-a23628148181" + ], + "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:20200326T234310Z:eb949665-a947-4b26-9bf8-b7787325d373" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:43: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ed950da6-877b-4b00-8036-a5686965f201" + ], + "x-ms-correlation-request-id": [ + "25e26e1b-a847-4b8c-8ca2-9c140a4d901c" + ], + "x-ms-arm-service-request-id": [ + "82c3c5b0-5cc5-433d-8cd5-16362e4828f8" + ], + "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:20200326T234320Z:25e26e1b-a847-4b8c-8ca2-9c140a4d901c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:43: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "74a27dd0-1cd6-4ddc-945a-0c1107360547" + ], + "x-ms-correlation-request-id": [ + "6c8783a8-5807-4f30-8ebf-5f2650226596" + ], + "x-ms-arm-service-request-id": [ + "41ffec42-d539-4cf4-abc8-eda180e69c59" + ], + "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:20200326T234330Z:6c8783a8-5807-4f30-8ebf-5f2650226596" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:43: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d54664d7-e8a5-4ad5-8edf-cad05cdbe6b0" + ], + "x-ms-correlation-request-id": [ + "027da855-badf-4e40-ba48-d0d5a6d09558" + ], + "x-ms-arm-service-request-id": [ + "476d6312-ba1c-452d-85c6-21d181539a98" + ], + "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:20200326T234340Z:027da855-badf-4e40-ba48-d0d5a6d09558" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:43: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c7f24bd3-89d6-4e7d-a97e-d6a9017dcc25" + ], + "x-ms-correlation-request-id": [ + "1c957baf-8fd7-490a-8713-9cd3206ec56e" + ], + "x-ms-arm-service-request-id": [ + "394994df-84dc-463e-8c58-f8567b22f1f0" + ], + "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:20200326T234350Z:1c957baf-8fd7-490a-8713-9cd3206ec56e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:43: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7f402e21-6bac-403c-a2ce-ec68605d322a" + ], + "x-ms-correlation-request-id": [ + "099a63cd-fea4-4a95-83fc-6b9e7a7d77f0" + ], + "x-ms-arm-service-request-id": [ + "6f3985c6-5bd8-49e1-931c-58432360254c" + ], + "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:20200326T234400Z:099a63cd-fea4-4a95-83fc-6b9e7a7d77f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:44: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d425840c-8567-4ddf-81ef-302d21e843d8" + ], + "x-ms-correlation-request-id": [ + "d2fe6500-a502-4669-b5fa-54460fd105e4" + ], + "x-ms-arm-service-request-id": [ + "3bc74a53-35dc-4483-83b3-74fb13eabc00" + ], + "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-routing-request-id": [ + "WESTUS:20200326T234410Z:d2fe6500-a502-4669-b5fa-54460fd105e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:44: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "197905bc-81db-4676-bd18-281bcdbd3db8" + ], + "x-ms-correlation-request-id": [ + "9298c5ce-7370-4441-8f7f-41fb39330f4f" + ], + "x-ms-arm-service-request-id": [ + "e5ed43e7-4e45-456a-a379-12be317e0d1f" + ], + "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:20200326T234420Z:9298c5ce-7370-4441-8f7f-41fb39330f4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:44: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3270a201-11bd-4676-9219-e856d0939e50" + ], + "x-ms-correlation-request-id": [ + "cddb4afc-5786-4a3e-bc20-354c5138463f" + ], + "x-ms-arm-service-request-id": [ + "7e51caf1-cb8f-4251-88a4-51cb2444bcfd" + ], + "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:20200326T234430Z:cddb4afc-5786-4a3e-bc20-354c5138463f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:44: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c16729bc-3bd8-4be8-9153-962111036847" + ], + "x-ms-correlation-request-id": [ + "e2942c40-58e4-41c6-a587-97290e899dd1" + ], + "x-ms-arm-service-request-id": [ + "f90f6263-c6c5-422d-963f-746420cc8a19" + ], + "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:20200326T234440Z:e2942c40-58e4-41c6-a587-97290e899dd1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:44: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "81823cc8-eb56-4712-bc38-d5551eeedfb5" + ], + "x-ms-correlation-request-id": [ + "1e0bc7fb-b23b-4985-a65e-4b571dd493c0" + ], + "x-ms-arm-service-request-id": [ + "d475d4e7-2e9d-431e-8891-85398c976e69" + ], + "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:20200326T234450Z:1e0bc7fb-b23b-4985-a65e-4b571dd493c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:44: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c9413461-5854-4081-a28f-94272edcbf45" + ], + "x-ms-correlation-request-id": [ + "d275183d-3884-4956-a6fc-9606c2234544" + ], + "x-ms-arm-service-request-id": [ + "c9cd755c-bcb4-4dd1-87f5-5c0ac6ebf36e" + ], + "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:20200326T234500Z:d275183d-3884-4956-a6fc-9606c2234544" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:45: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "078bd386-cdcc-4699-9170-1b00273d1c77" + ], + "x-ms-correlation-request-id": [ + "062901f4-ae82-44ec-ae45-28aad383ee4e" + ], + "x-ms-arm-service-request-id": [ + "c9ba5415-182f-4dc0-815f-6cb52142bc44" + ], + "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:20200326T234510Z:062901f4-ae82-44ec-ae45-28aad383ee4e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:45: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0d69544d-b478-46f0-8f69-48478dc49018" + ], + "x-ms-correlation-request-id": [ + "64006026-f11f-4840-94d6-e3f7f9e0b168" + ], + "x-ms-arm-service-request-id": [ + "189861b0-6f40-44f5-bf58-f8327de36f79" + ], + "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:20200326T234520Z:64006026-f11f-4840-94d6-e3f7f9e0b168" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:45: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f8248044-5c1c-4429-8cba-5811c6b07a4c" + ], + "x-ms-correlation-request-id": [ + "7a95a97e-6f63-4d57-a7ac-8af465771a0e" + ], + "x-ms-arm-service-request-id": [ + "972ce2a3-1e2c-43ef-ba78-b0d3ddb05239" + ], + "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:20200326T234530Z:7a95a97e-6f63-4d57-a7ac-8af465771a0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:45: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "df460626-5b25-4328-8f37-a190a346b4d9" + ], + "x-ms-correlation-request-id": [ + "308ffafc-be68-4eb3-9df4-cbe73e9438d1" + ], + "x-ms-arm-service-request-id": [ + "6c3d7669-e16a-4762-bf4a-d335b17a5abb" + ], + "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:20200326T234541Z:308ffafc-be68-4eb3-9df4-cbe73e9438d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:45: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9f12c68f-7200-48ee-91f1-d2c642767e75" + ], + "x-ms-correlation-request-id": [ + "6398cff1-85b2-4836-8c3d-3e0f4fcb2c2a" + ], + "x-ms-arm-service-request-id": [ + "920fedb3-1de3-4817-93ae-78c26144738d" + ], + "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:20200326T234551Z:6398cff1-85b2-4836-8c3d-3e0f4fcb2c2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:45: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "131531a3-e109-4a84-ad99-c615c9d11b98" + ], + "x-ms-correlation-request-id": [ + "a181daf0-37df-457f-a314-1c4ad6c82673" + ], + "x-ms-arm-service-request-id": [ + "880c1dcf-8e1e-40a0-aa65-d1d1d55e5f45" + ], + "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:20200326T234601Z:a181daf0-37df-457f-a314-1c4ad6c82673" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:46: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "180ab52f-3e8f-4d4e-8868-d872aac718fd" + ], + "x-ms-correlation-request-id": [ + "a215c591-030a-4ce2-9d82-e1cc6e67935e" + ], + "x-ms-arm-service-request-id": [ + "8c983c49-a03c-49c3-a522-519641785a81" + ], + "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:20200326T234611Z:a215c591-030a-4ce2-9d82-e1cc6e67935e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:46: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e4a5b527-1075-4ddc-a1cf-fbba1fd1c473" + ], + "x-ms-correlation-request-id": [ + "d738d06b-5b8c-451c-9458-072083091019" + ], + "x-ms-arm-service-request-id": [ + "94eb4685-3658-406d-b62f-7822293bf2f4" + ], + "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:20200326T234621Z:d738d06b-5b8c-451c-9458-072083091019" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:46: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8379da72-1543-4ead-b659-4bc634715a7a" + ], + "x-ms-correlation-request-id": [ + "36f23c54-3c7f-40d1-ac3c-ac65624e1207" + ], + "x-ms-arm-service-request-id": [ + "0b8d6bab-cf2c-4382-aef1-43546b5e340a" + ], + "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:20200326T234631Z:36f23c54-3c7f-40d1-ac3c-ac65624e1207" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:46: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "934d4503-19fa-472d-90b2-3ccf21f78380" + ], + "x-ms-correlation-request-id": [ + "10266a20-e4d8-4e11-bda1-d680022a5741" + ], + "x-ms-arm-service-request-id": [ + "f0576525-78d8-4c34-b208-9994b49ce355" + ], + "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:20200326T234641Z:10266a20-e4d8-4e11-bda1-d680022a5741" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:46: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "56e655ee-b976-450d-a9d0-8ea2c147251e" + ], + "x-ms-correlation-request-id": [ + "e3c81951-1125-459f-a9b1-ef5e9fa9995e" + ], + "x-ms-arm-service-request-id": [ + "36765054-212d-44f3-a0ef-1e8653e8fb1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T234651Z:e3c81951-1125-459f-a9b1-ef5e9fa9995e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:46: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e17137d7-9cd6-44e6-9191-e2c818223648" + ], + "x-ms-correlation-request-id": [ + "5c863035-0cfb-4886-92e7-6c39b3d5105b" + ], + "x-ms-arm-service-request-id": [ + "178f033a-6419-4696-b708-9d85a5098654" + ], + "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:20200326T234701Z:5c863035-0cfb-4886-92e7-6c39b3d5105b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:47: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "384aeed2-7d84-481a-b5da-e121bc5a6fae" + ], + "x-ms-correlation-request-id": [ + "cfd68b3b-7e3b-46d3-ac97-ba25489b98f7" + ], + "x-ms-arm-service-request-id": [ + "7b65a3c8-8df0-4bbd-a75f-277dd656631b" + ], + "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:20200326T234711Z:cfd68b3b-7e3b-46d3-ac97-ba25489b98f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:47: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e2f4c2d8-1949-4d44-bc1f-a610c46c833c" + ], + "x-ms-correlation-request-id": [ + "e2851b19-efd8-4730-8275-08e6fa9a5db2" + ], + "x-ms-arm-service-request-id": [ + "99b63347-daec-4df5-8a1e-902389d3f47a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T234721Z:e2851b19-efd8-4730-8275-08e6fa9a5db2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:47: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4de27107-b20d-47f3-bc75-8d5568b60955" + ], + "x-ms-correlation-request-id": [ + "638bf070-006f-445f-b75d-d7468ccc7ab7" + ], + "x-ms-arm-service-request-id": [ + "8738998b-c024-4b9d-9e32-14aed66ba960" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T234731Z:638bf070-006f-445f-b75d-d7468ccc7ab7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:47: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d6126622-34ee-4bf2-95f4-7e7228fbcebb" + ], + "x-ms-correlation-request-id": [ + "5aa3a60b-e7a0-4bb8-b48a-35fe65523f2d" + ], + "x-ms-arm-service-request-id": [ + "6da3591d-ddc8-4fbf-b845-8f722f7eb10b" + ], + "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": [ + "WESTUS:20200326T234741Z:5aa3a60b-e7a0-4bb8-b48a-35fe65523f2d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:47: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3d1e1375-ed56-4604-aee4-012dad8dd475" + ], + "x-ms-correlation-request-id": [ + "0d083063-57a9-487c-9ae4-2029d96a6ded" + ], + "x-ms-arm-service-request-id": [ + "42c01e83-fec6-4354-b1d3-2f62d4195696" + ], + "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": [ + "WESTUS:20200326T234751Z:0d083063-57a9-487c-9ae4-2029d96a6ded" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:47: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "87e38759-d0b4-4edf-87e2-d69754490908" + ], + "x-ms-correlation-request-id": [ + "b0345bd1-9c88-414a-a823-6edd319fbc7e" + ], + "x-ms-arm-service-request-id": [ + "4c3a3b76-9cbc-4d8b-a0a1-72886768820f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11895" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T234801Z:b0345bd1-9c88-414a-a823-6edd319fbc7e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:48: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9d5e3b5b-af6a-4c4b-ad55-02f57e388f68" + ], + "x-ms-correlation-request-id": [ + "269cabf2-541b-4d86-8834-12bb5ec50f6b" + ], + "x-ms-arm-service-request-id": [ + "5737ea1c-c1dd-497d-8ffb-af5305e8ba6f" + ], + "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": [ + "WESTUS:20200326T234812Z:269cabf2-541b-4d86-8834-12bb5ec50f6b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:48: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "08a7d637-22eb-49a6-823a-c7f79d4d9dfd" + ], + "x-ms-correlation-request-id": [ + "89796eb4-0b48-40eb-83a9-cd4a83c8248d" + ], + "x-ms-arm-service-request-id": [ + "87540ed2-932c-4ce5-8583-c8e420d7b7d5" + ], + "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": [ + "WESTUS:20200326T234822Z:89796eb4-0b48-40eb-83a9-cd4a83c8248d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:48: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "955ee115-6ef1-41dc-a755-cabcdcd0bc06" + ], + "x-ms-correlation-request-id": [ + "d18e9202-2d9e-487b-89aa-6949b85df4a1" + ], + "x-ms-arm-service-request-id": [ + "431edc58-3079-405b-ae2f-8b581b225d8e" + ], + "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": [ + "WESTUS:20200326T234832Z:d18e9202-2d9e-487b-89aa-6949b85df4a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:48: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8b3898e4-ff88-473a-8822-0e2b861d52bc" + ], + "x-ms-correlation-request-id": [ + "fffa34a4-f982-4fe8-b5d4-d3ddd88d60de" + ], + "x-ms-arm-service-request-id": [ + "dceb360d-08cf-4bc8-86ed-bf93f0d6931b" + ], + "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": [ + "WESTUS:20200326T234842Z:fffa34a4-f982-4fe8-b5d4-d3ddd88d60de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:48: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3a58bc3e-f2ee-4a91-9d06-3f55df7fe210" + ], + "x-ms-correlation-request-id": [ + "cdeedec8-889e-4ddd-ad2a-36fc191bbc64" + ], + "x-ms-arm-service-request-id": [ + "d32ac158-73a1-4cc8-a0b6-a755b0b4ba56" + ], + "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": [ + "WESTUS:20200326T234852Z:cdeedec8-889e-4ddd-ad2a-36fc191bbc64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:48: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7f38bde6-197b-4ae2-bf54-625944ac53c4" + ], + "x-ms-correlation-request-id": [ + "97e25b25-c8ae-4f7a-8d71-9debd9371b94" + ], + "x-ms-arm-service-request-id": [ + "8a5e6fba-08a3-4a8a-b552-d1dd6edf4863" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11889" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T234902Z:97e25b25-c8ae-4f7a-8d71-9debd9371b94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:49: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b68e3c8b-00d4-4c26-94a9-f71b44b9419b" + ], + "x-ms-correlation-request-id": [ + "035fad2d-df58-4104-a4e4-0f976ce9fc76" + ], + "x-ms-arm-service-request-id": [ + "3d15ebe1-b102-4eff-90ac-473511bfd91f" + ], + "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": [ + "WESTUS:20200326T234912Z:035fad2d-df58-4104-a4e4-0f976ce9fc76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:49: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b799b19c-f53d-4e10-b85c-54b7f9346914" + ], + "x-ms-correlation-request-id": [ + "f4190f75-3f36-4076-9ccf-10bac46ab4d2" + ], + "x-ms-arm-service-request-id": [ + "c7824f1a-3f7d-4669-857d-e26111e38ce9" + ], + "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": [ + "WESTUS:20200326T234922Z:f4190f75-3f36-4076-9ccf-10bac46ab4d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:49: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "22211e35-28cd-4c7f-a26b-ffe2a73d0e1c" + ], + "x-ms-correlation-request-id": [ + "eb41e97e-0dcc-4db0-95ba-31c89fd06f9f" + ], + "x-ms-arm-service-request-id": [ + "7e9bbaee-6757-4033-a44b-f75b473eb107" + ], + "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": [ + "WESTUS:20200326T234932Z:eb41e97e-0dcc-4db0-95ba-31c89fd06f9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:49: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7d1ad20d-f647-4bca-8eaf-76a3cb092b1f" + ], + "x-ms-correlation-request-id": [ + "83743dd4-b34d-45fe-ac24-6d68159a5958" + ], + "x-ms-arm-service-request-id": [ + "f09e91f4-513e-4096-936e-f468a8a73e91" + ], + "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": [ + "WESTUS:20200326T234942Z:83743dd4-b34d-45fe-ac24-6d68159a5958" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:49: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7377aed5-c390-41ce-815b-8fd781d26220" + ], + "x-ms-correlation-request-id": [ + "716bb077-83a6-420d-a174-c50e708b8513" + ], + "x-ms-arm-service-request-id": [ + "9375fea5-ae67-417b-872d-199893e408fc" + ], + "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": [ + "WESTUS:20200326T234952Z:716bb077-83a6-420d-a174-c50e708b8513" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:49: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b6bf8e23-9682-4d12-8099-da0a886d6679" + ], + "x-ms-correlation-request-id": [ + "4698a789-f068-425a-9190-157c0a5009eb" + ], + "x-ms-arm-service-request-id": [ + "a202d3ac-0026-4cbc-b152-5b3e0db99ccf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11883" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235002Z:4698a789-f068-425a-9190-157c0a5009eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:50: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "17eeabf9-1dbe-4e67-bc04-b4f90bc0ecd0" + ], + "x-ms-correlation-request-id": [ + "4c3e00cf-4ac8-413f-9ae0-333c4e608159" + ], + "x-ms-arm-service-request-id": [ + "93cb7d30-f5a9-4378-8ad3-7a916657bd38" + ], + "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": [ + "WESTUS:20200326T235012Z:4c3e00cf-4ac8-413f-9ae0-333c4e608159" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:50: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "67644a28-c5f5-474c-8963-0067c494f57d" + ], + "x-ms-correlation-request-id": [ + "8a5d4a6f-bb0f-440d-b5e3-f1a2e1b5f802" + ], + "x-ms-arm-service-request-id": [ + "a9e4dcef-1748-4d53-ba98-3e896f533102" + ], + "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": [ + "WESTUS:20200326T235022Z:8a5d4a6f-bb0f-440d-b5e3-f1a2e1b5f802" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:50: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cb36a14e-2856-479a-a257-151e5f5d871f" + ], + "x-ms-correlation-request-id": [ + "62a9dc23-3901-4e08-b13e-c49653041dd2" + ], + "x-ms-arm-service-request-id": [ + "72755fdd-ff74-48b8-979e-4ff7e80ab211" + ], + "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": [ + "WESTUS:20200326T235032Z:62a9dc23-3901-4e08-b13e-c49653041dd2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:50: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cf8303e0-0c77-40db-80ee-eb5cef4027d9" + ], + "x-ms-correlation-request-id": [ + "e919b21e-bf70-4d4c-a273-686670eb124f" + ], + "x-ms-arm-service-request-id": [ + "68829b51-bfa3-467f-a99b-9686a27c1954" + ], + "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": [ + "WESTUS:20200326T235042Z:e919b21e-bf70-4d4c-a273-686670eb124f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:50: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "17ecb86c-86b7-4e01-8d07-07a6c7422066" + ], + "x-ms-correlation-request-id": [ + "17f3f3a0-8e8c-4128-9849-52b8c60ec794" + ], + "x-ms-arm-service-request-id": [ + "3b3a4fc2-00b8-43e4-b18f-2ab2d0ee1bf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11878" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235053Z:17f3f3a0-8e8c-4128-9849-52b8c60ec794" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:50: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a3ef04fd-f83b-40b3-a8db-7f1a500ca90a" + ], + "x-ms-correlation-request-id": [ + "bea2acc9-f590-4e42-80a4-9905005b14ba" + ], + "x-ms-arm-service-request-id": [ + "ad045589-5c00-463f-9049-20c2029914be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11877" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235103Z:bea2acc9-f590-4e42-80a4-9905005b14ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:51: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0dc631e4-42be-4326-a991-959bfb4f4b31" + ], + "x-ms-correlation-request-id": [ + "0d744db6-3c57-49b6-a5e0-e19da83acad3" + ], + "x-ms-arm-service-request-id": [ + "1f8a292a-b9d5-46f9-815c-c804e66038a6" + ], + "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": [ + "WESTUS:20200326T235113Z:0d744db6-3c57-49b6-a5e0-e19da83acad3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:51: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ee0f65b4-5aad-4775-8ff5-5a9649af9f64" + ], + "x-ms-correlation-request-id": [ + "050e831c-1ffb-493c-b875-1727a42efd6e" + ], + "x-ms-arm-service-request-id": [ + "8a1b54d4-7028-405a-aecc-ee647bfb2161" + ], + "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": [ + "WESTUS:20200326T235123Z:050e831c-1ffb-493c-b875-1727a42efd6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:51: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a4d138fe-f559-4760-b8a1-606b972c2f75" + ], + "x-ms-correlation-request-id": [ + "f4ee5f91-465d-414f-adba-1aa6c16c4793" + ], + "x-ms-arm-service-request-id": [ + "32c2d439-2735-4fd2-bd10-421e105f0550" + ], + "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": [ + "WESTUS:20200326T235133Z:f4ee5f91-465d-414f-adba-1aa6c16c4793" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:51: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4384f5fc-c91d-4e45-a91c-c67b9a9ee534" + ], + "x-ms-correlation-request-id": [ + "43aa1145-baec-4d44-8598-03af273a5f61" + ], + "x-ms-arm-service-request-id": [ + "87725d73-5331-4b83-92ff-3658367ae728" + ], + "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": [ + "WESTUS:20200326T235143Z:43aa1145-baec-4d44-8598-03af273a5f61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:51: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "98fbeb9c-169a-43fb-a242-929294b85c4c" + ], + "x-ms-correlation-request-id": [ + "287f31e2-b067-4d9a-b98d-515cb870b266" + ], + "x-ms-arm-service-request-id": [ + "3aa138cc-33fb-4706-98c6-d175e98cbb42" + ], + "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": [ + "WESTUS:20200326T235153Z:287f31e2-b067-4d9a-b98d-515cb870b266" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:51: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/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operationResults/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzdhOTQyNTNlLThjZmYtNDkyMC1iNDQ4LTZmYzdlY2IwZjEzZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operationResults/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01" + ], + "x-ms-request-id": [ + "7a94253e-8cff-4920-b448-6fc7ecb0f13d" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/providers/Microsoft.Network/locations/westus2/operations/7a94253e-8cff-4920-b448-6fc7ecb0f13d?api-version=2019-12-01" + ], + "x-ms-correlation-request-id": [ + "36ff7b32-5a22-481b-8c0a-e24350ece0bc" + ], + "x-ms-arm-service-request-id": [ + "95ed04ab-9fa2-4c2c-bb25-92d8282a3dc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11871" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235153Z:005a0789-930d-4dfb-a26d-3c6b828ff0b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:51:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/resourcegroups/ps2103?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL3Jlc291cmNlZ3JvdXBzL3BzMjEwMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "456b8b76-7397-4321-bc78-bc86d285af4e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "39cc838d-e3f2-4b60-8f7a-a1e082575a1a" + ], + "x-ms-correlation-request-id": [ + "39cc838d-e3f2-4b60-8f7a-a1e082575a1a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235154Z:39cc838d-e3f2-4b60-8f7a-a1e082575a1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:51:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1ETXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "1d291ce7-0dc1-4e65-a35b-681e4021d3c3" + ], + "x-ms-correlation-request-id": [ + "1d291ce7-0dc1-4e65-a35b-681e4021d3c3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235209Z:1d291ce7-0dc1-4e65-a35b-681e4021d3c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:52:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1ETXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "92a693b5-d23d-49b7-95ce-6ed7392ce46e" + ], + "x-ms-correlation-request-id": [ + "92a693b5-d23d-49b7-95ce-6ed7392ce46e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235224Z:92a693b5-d23d-49b7-95ce-6ed7392ce46e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:52:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1ETXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "a5117f57-fac7-43f3-becc-58bf43fa3ba6" + ], + "x-ms-correlation-request-id": [ + "a5117f57-fac7-43f3-becc-58bf43fa3ba6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235239Z:a5117f57-fac7-43f3-becc-58bf43fa3ba6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:52:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1ETXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "7f6349c4-eac6-4ff0-b96f-516552f75998" + ], + "x-ms-correlation-request-id": [ + "7f6349c4-eac6-4ff0-b96f-516552f75998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235254Z:7f6349c4-eac6-4ff0-b96f-516552f75998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:52:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1ETXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "995e1dbb-6674-49bd-9886-25e04de4e815" + ], + "x-ms-correlation-request-id": [ + "995e1dbb-6674-49bd-9886-25e04de4e815" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235309Z:995e1dbb-6674-49bd-9886-25e04de4e815" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:53:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1ETXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "b59fdf05-dae8-4ef1-946b-d2589a7f6785" + ], + "x-ms-correlation-request-id": [ + "b59fdf05-dae8-4ef1-946b-d2589a7f6785" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235324Z:b59fdf05-dae8-4ef1-946b-d2589a7f6785" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:53:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1ETXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "288e6f18-66a7-4225-b342-a8bc9fd08c1e" + ], + "x-ms-correlation-request-id": [ + "288e6f18-66a7-4225-b342-a8bc9fd08c1e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235339Z:288e6f18-66a7-4225-b342-a8bc9fd08c1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:53:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1ETXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "c5cc4af5-d467-40be-b356-3e51ba9a49c4" + ], + "x-ms-correlation-request-id": [ + "c5cc4af5-d467-40be-b356-3e51ba9a49c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235354Z:c5cc4af5-d467-40be-b356-3e51ba9a49c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:53:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1ETXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "de194b66-5a25-4f3c-975a-730112059143" + ], + "x-ms-correlation-request-id": [ + "de194b66-5a25-4f3c-975a-730112059143" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235410Z:de194b66-5a25-4f3c-975a-730112059143" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:54:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1ETXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "34d3375e-cb0a-404b-b7f6-78385922eed0" + ], + "x-ms-correlation-request-id": [ + "34d3375e-cb0a-404b-b7f6-78385922eed0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235425Z:34d3375e-cb0a-404b-b7f6-78385922eed0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:54:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1ETXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "58b9559e-284f-4a5f-b467-11c3d6967bcf" + ], + "x-ms-correlation-request-id": [ + "58b9559e-284f-4a5f-b467-11c3d6967bcf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235452Z:58b9559e-284f-4a5f-b467-11c3d6967bcf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:54:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1ETXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "75af63af-b516-4253-b5ec-af3864401dcb" + ], + "x-ms-correlation-request-id": [ + "75af63af-b516-4253-b5ec-af3864401dcb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235507Z:75af63af-b516-4253-b5ec-af3864401dcb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:55:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1ETXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "3f51f5e3-e75d-4666-82ed-f1645d29c452" + ], + "x-ms-correlation-request-id": [ + "3f51f5e3-e75d-4666-82ed-f1645d29c452" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235522Z:3f51f5e3-e75d-4666-82ed-f1645d29c452" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:55:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1ETXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "662ad050-44e0-4e40-9c93-e7e1c35ca2c0" + ], + "x-ms-correlation-request-id": [ + "662ad050-44e0-4e40-9c93-e7e1c35ca2c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235537Z:662ad050-44e0-4e40-9c93-e7e1c35ca2c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:55:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/86501df2-2fc5-4fc3-b193-d305572e416f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODY1MDFkZjItMmZjNS00ZmMzLWIxOTMtZDMwNTU3MmU0MTZmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1ETXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "cb3bf9ca-04cf-493a-93a0-9277c85da496" + ], + "x-ms-correlation-request-id": [ + "cb3bf9ca-04cf-493a-93a0-9277c85da496" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200326T235537Z:cb3bf9ca-04cf-493a-93a0-9277c85da496" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 26 Mar 2020 23:55:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-KeyVaultIntegrationTest": [ + "ps2103", + "ps372", + "ps5071", + "ps1769", + "ps735", + "ps1575", + "ps4599", + "ps9264", + "ps758", + "ps6481", + "ps7707", + "ps6884", + "ps968", + "ps4499", + "ps4266", + "ps4660" + ] + }, + "Variables": { + "SubscriptionId": "86501df2-2fc5-4fc3-b193-d305572e416f" + } +} \ No newline at end of file diff --git a/src/Network/Network.sln b/src/Network/Network.sln index 6df692440e18..5c3d1141f6d5 100644 --- a/src/Network/Network.sln +++ b/src/Network/Network.sln @@ -32,6 +32,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ScenarioTest.ResourceManage EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestFx", "..\..\tools\TestFx\TestFx.csproj", "{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Sql.LegacySdk", "..\Sql\Sql.LegacySdk\Sql.LegacySdk.csproj", "{AD8D31C1-3C84-4213-A13A-A21C7440E591}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -94,6 +96,10 @@ Global {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Debug|Any CPU.Build.0 = Debug|Any CPU {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.ActiveCfg = Release|Any CPU {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.Build.0 = Release|Any CPU + {AD8D31C1-3C84-4213-A13A-A21C7440E591}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AD8D31C1-3C84-4213-A13A-A21C7440E591}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AD8D31C1-3C84-4213-A13A-A21C7440E591}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AD8D31C1-3C84-4213-A13A-A21C7440E591}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/Network/Network/ApplicationGateway/SslCertificate/SetAzureApplicationGatewaySslCertificateCommand.cs b/src/Network/Network/ApplicationGateway/SslCertificate/SetAzureApplicationGatewaySslCertificateCommand.cs index 60f55598d7af..1a60fced4f18 100644 --- a/src/Network/Network/ApplicationGateway/SslCertificate/SetAzureApplicationGatewaySslCertificateCommand.cs +++ b/src/Network/Network/ApplicationGateway/SslCertificate/SetAzureApplicationGatewaySslCertificateCommand.cs @@ -40,7 +40,9 @@ public override void ExecuteCmdlet() throw new ArgumentException("Ssl certificate with the specified name does not exist"); } - X509Certificate2 cert = new X509Certificate2(this.CertificateFile, this.Password, X509KeyStorageFlags.Exportable); + if (this.CertificateFile != null) { + new X509Certificate2(this.CertificateFile, this.Password, X509KeyStorageFlags.Exportable); + } var newSslCertificate = base.NewObject(); diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index d6106623ef73..f9c43bd63e3e 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -30,6 +30,7 @@ - Set-AzVirtualNetworkGateway - New-AzVirtualNetworkGatewayConnection - Set-AzVirtualNetworkGatewayConnection +* Bug fix for Set-AzApplicationGatewaySslCertificate (https://github.com/Azure/azure-powershell/issues/9488) ## Version 2.3.2 * Updated Sql Management SDK. diff --git a/tools/ScenarioTest.ResourceManager/EnvironmentSetupHelper.cs b/tools/ScenarioTest.ResourceManager/EnvironmentSetupHelper.cs index befacea71c5a..efdd5aaf4b3f 100644 --- a/tools/ScenarioTest.ResourceManager/EnvironmentSetupHelper.cs +++ b/tools/ScenarioTest.ResourceManager/EnvironmentSetupHelper.cs @@ -427,6 +427,8 @@ public void SetupAzureEnvironmentFromEnvironmentVariables(AzureModule mode) environment.AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix = currentEnvironment.Endpoints.DataLakeAnalyticsJobAndCatalogServiceUri.OriginalString.Replace("https://", ""); // because it is just a sufix environment.AzureDataLakeStoreFileSystemEndpointSuffix = currentEnvironment.Endpoints.DataLakeStoreServiceUri.OriginalString.Replace("https://", ""); // because it is just a sufix environment.StorageEndpointSuffix = AzureEnvironmentConstants.AzureStorageEndpointSuffix; + environment.AzureKeyVaultDnsSuffix = AzureEnvironmentConstants.AzureKeyVaultDnsSuffix; + environment.AzureKeyVaultServiceEndpointResourceId = AzureEnvironmentConstants.AzureKeyVaultServiceEndpointResourceId; if (!AzureRmProfileProvider.Instance.GetProfile().EnvironmentTable.ContainsKey(testEnvironmentName)) { AzureRmProfileProvider.Instance.GetProfile().EnvironmentTable[testEnvironmentName] = environment; diff --git a/tools/TestFx/ITestRunnerFactory.cs b/tools/TestFx/ITestRunnerFactory.cs index bf76c3d0d4e2..ec4c27517ea0 100644 --- a/tools/TestFx/ITestRunnerFactory.cs +++ b/tools/TestFx/ITestRunnerFactory.cs @@ -14,6 +14,7 @@ using System; using System.Collections.Generic; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Microsoft.WindowsAzure.Commands.ScenarioTest; namespace Microsoft.Azure.Commands.TestFx @@ -30,5 +31,6 @@ public interface ITestRunnerFactory ITestRunnerFactory WithExtraUserAgentsToIgnore(Dictionary userAgentsToIgnore); ITestRunnerFactory WithRecordMatcher(RecordMatcherDelegate recordMatcher); ITestRunnerFactory WithNewRecordMatcherArguments(Dictionary userAgentsToIgnore, Dictionary resourceProviders); + ITestRunnerFactory WithManagementClients(params Func []initializedManagementClients); } } diff --git a/tools/TestFx/TestManager.cs b/tools/TestFx/TestManager.cs index 4e77eedafedd..5528180655c1 100644 --- a/tools/TestFx/TestManager.cs +++ b/tools/TestFx/TestManager.cs @@ -41,6 +41,7 @@ public class TestManager : ITestRunnerFactory, ITestRunner private Dictionary _matcherNewUserAgentsToIgnore; private Dictionary _matcherResourceProviders; private Action _mockContextAction; + private Func[] _initializedManagementClients; protected EnvironmentSetupHelper Helper; protected readonly List RmModules; protected readonly List CommonPsScripts = new List(); @@ -195,6 +196,12 @@ public ITestRunnerFactory WithTestOutputHelper(ITestOutputHelper output) return this; } + public ITestRunnerFactory WithManagementClients(params Func[] initializedManagementClients) + { + _initializedManagementClients = initializedManagementClients; + return this; + } + public ITestRunner Build() { SetupSessionAndProfile(); @@ -214,6 +221,7 @@ public void RunTestScript(params string[] scripts) { _mockContextAction?.Invoke(); AzureSession.Instance.ClientFactory = new TestClientFactory(mockContext); + SetupManagementClients(mockContext); Helper.SetupEnvironment(AzureModule.AzureResourceManager); SetupAzureContext(); Helper.RunPowerShellTest(scripts); @@ -331,6 +339,17 @@ protected void SetupMockServerMatcher() HttpMockServer.Matcher = RecordMatcher(true, resourceProviders, userAgentsToIgnore); } + protected void SetupManagementClients(MockContext context) + { + if (this._initializedManagementClients != null) { + var clients = new List(); + foreach (var client in this._initializedManagementClients) + { + clients.Add(client(context)); + } + Helper.SetupManagementClients(clients.ToArray()); + } + } #endregion } }