From a99847975f2855f4092e0047dba9c1097990cb58 Mon Sep 17 00:00:00 2001 From: Jaishal Shah Date: Fri, 12 Jun 2020 01:45:44 -0700 Subject: [PATCH 1/2] Application Gateway Private Link Cmdlets --- .../ScenarioTests/ApplicationGatewayTests.cs | 8 + .../ScenarioTests/ApplicationGatewayTests.ps1 | 146 + ...onGatewayWithPrivateLinkConfiguration.json | 11316 ++++++++++++++++ ...eApplicationGatewayFrontendIPConfigBase.cs | 23 + .../NewAzureApplicationGatewayCommand.cs | 8 + ...nGatewayPrivateLinkConfigurationCommand.cs | 50 + ...tionGatewayPrivateLinkConfigurationBase.cs | 56 + ...nGatewayPrivateLinkConfigurationCommand.cs | 51 + ...nGatewayPrivateLinkConfigurationCommand.cs | 30 + ...atewayPrivateLinkIpConfigurationCommand.cs | 93 + ...nGatewayPrivateLinkConfigurationCommand.cs | 50 + ...nGatewayPrivateLinkConfigurationCommand.cs | 52 + src/Network/Network/Az.Network.psd1 | 8 +- .../Common/NetworkResourceManagerProfile.cs | 6 + .../Network/Models/PSApplicationGateway.cs | 16 + ...plicationGatewayFrontendIPConfiguration.cs | 7 + ...icationGatewayPrivateEndpointConnection.cs | 57 + ...licationGatewayPrivateLinkConfiguration.cs | 37 + ...cationGatewayPrivateLinkIpConfiguration.cs | 46 + .../Network/Properties/Resources.Designer.cs | 80 +- src/Network/Network/Properties/Resources.resx | 9 + ...dd-AzApplicationGatewayFrontendIPConfig.md | 51 +- ...licationGatewayPrivateLinkConfiguration.md | 122 + ...et-AzApplicationGatewayFrontendIPConfig.md | 6 +- ...licationGatewayPrivateLinkConfiguration.md | 111 + .../Network/help/New-AzApplicationGateway.md | 95 +- ...ew-AzApplicationGatewayFrontendIPConfig.md | 53 +- ...licationGatewayPrivateLinkConfiguration.md | 141 + ...cationGatewayPrivateLinkIpConfiguration.md | 141 + ...ve-AzApplicationGatewayFrontendIPConfig.md | 8 +- ...licationGatewayPrivateLinkConfiguration.md | 102 + .../Network/help/Set-AzApplicationGateway.md | 8 +- ...et-AzApplicationGatewayFrontendIPConfig.md | 51 +- ...licationGatewayPrivateLinkConfiguration.md | 151 + .../Exceptions/Az.Network/SignatureIssues.csv | 7 +- 35 files changed, 13085 insertions(+), 111 deletions(-) create mode 100644 src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestApplicationGatewayWithPrivateLinkConfiguration.json create mode 100644 src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/AddApplicationGatewayPrivateLinkConfigurationCommand.cs create mode 100644 src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/AzureApplicationGatewayPrivateLinkConfigurationBase.cs create mode 100644 src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/GetAzureApplicationGatewayPrivateLinkConfigurationCommand.cs create mode 100644 src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/NewAzureApplicationGatewayPrivateLinkConfigurationCommand.cs create mode 100644 src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand.cs create mode 100644 src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand.cs create mode 100644 src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/SetAzureApplicationGatewayPrivateLinkConfigurationCommand.cs create mode 100644 src/Network/Network/Models/PSApplicationGatewayPrivateEndpointConnection.cs create mode 100644 src/Network/Network/Models/PSApplicationGatewayPrivateLinkConfiguration.cs create mode 100644 src/Network/Network/Models/PSApplicationGatewayPrivateLinkIpConfiguration.cs create mode 100644 src/Network/Network/help/Add-AzApplicationGatewayPrivateLinkConfiguration.md create mode 100644 src/Network/Network/help/Get-AzApplicationGatewayPrivateLinkConfiguration.md create mode 100644 src/Network/Network/help/New-AzApplicationGatewayPrivateLinkConfiguration.md create mode 100644 src/Network/Network/help/New-AzApplicationGatewayPrivateLinkIpConfiguration.md create mode 100644 src/Network/Network/help/Remove-AzApplicationGatewayPrivateLinkConfiguration.md create mode 100644 src/Network/Network/help/Set-AzApplicationGatewayPrivateLinkConfiguration.md diff --git a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs index fdbd99928804..82063c72bac1 100644 --- a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs +++ b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs @@ -137,5 +137,13 @@ public void TestApplicationGatewayWithListenerHostNames() { TestRunner.RunTestScript(string.Format("Test-ApplicationGatewayWithListenerHostNames -baseDir '{0}'", AppDomain.CurrentDomain.BaseDirectory)); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, NrpTeamAlias.nvadev_subset1)] + public void TestApplicationGatewayWithPrivateLinkConfiguration() + { + TestRunner.RunTestScript(string.Format("Test-ApplicationGatewayWithPrivateLinkConfiguration -baseDir '{0}'", AppDomain.CurrentDomain.BaseDirectory)); + } } } diff --git a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 index 45caad6beeba..e202f4b6b345 100644 --- a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 @@ -2800,3 +2800,149 @@ function Test-ApplicationGatewayWithListenerHostNames Clean-ResourceGroup $rgname } } + +function Test-ApplicationGatewayWithPrivateLinkConfiguration +{ + param + ( + $basedir = "./" + ) + + # Setup + $location = Get-ProviderLocation "Microsoft.Network/applicationGateways" "westus2" + + $rgname = Get-ResourceGroupName + $appgwName = Get-ResourceName + $vnetName = Get-ResourceName + $gwSubnetName = Get-ResourceName + $plsSubnetName = Get-ResourceName + $publicIpName = Get-ResourceName + $gipconfigname = Get-ResourceName + + $frontendPort01Name = Get-ResourceName + $fipconfigName = Get-ResourceName + $listener01Name = Get-ResourceName + + $poolName = Get-ResourceName + $trustedRootCertName = Get-ResourceName + $poolSetting01Name = Get-ResourceName + + $rule01Name = Get-ResourceName + + $probeHttpName = Get-ResourceName + + $privateLinkIpConfigName1 = Get-ResourceName + $privateLinkIpConfigName2 = Get-ResourceName + $privateLinkIpConfigName3 = Get-ResourceName + + $privateLinkConfigName = Get-ResourceName + $privateLinkConfigName2 = Get-ResourceName + + try + { + # Create the resource group + $resourceGroup = New-AzResourceGroup -Name $rgname -Location $location -Tags @{ testtag = "APPGw tag"} + # Create the Virtual Network + $gwSubnet = New-AzVirtualNetworkSubnetConfig -Name $gwSubnetName -AddressPrefix 10.0.0.0/24 -PrivateLinkServiceNetworkPoliciesFlag "Disabled" + $plsSubnet = New-AzVirtualNetworkSubnetConfig -Name $plsSubnetName -AddressPrefix 10.0.1.0/24 -PrivateLinkServiceNetworkPoliciesFlag "Disabled" + $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $gwSubnet, $plsSubnet + $vnet = Get-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname + $gwSubnet = Get-AzVirtualNetworkSubnetConfig -Name $gwSubnetName -VirtualNetwork $vnet + $plsSubnet = Get-AzVirtualNetworkSubnetConfig -Name $plsSubnetName -VirtualNetwork $vnet + + # Create public ip + $publicip = New-AzPublicIpAddress -ResourceGroupName $rgname -name $publicIpName -location $location -AllocationMethod Static -sku Standard + + # Create ip configuration + $gipconfig = New-AzApplicationGatewayIPConfiguration -Name $gipconfigname -Subnet $gwSubnet + + # private link configuration + $privateLinkIpConfiguration1 = New-AzApplicationGatewayPrivateLinkIpConfiguration -Name $privateLinkIpConfigName1 -Subnet $plsSubnet -Primary + $privateLinkIpConfiguration2 = New-AzApplicationGatewayPrivateLinkIpConfiguration -Name $privateLinkIpConfigName2 -Subnet $plsSubnet + $privateLinkConfiguration = New-AzApplicationGatewayPrivateLinkConfiguration -Name $privateLinkConfigName -IpConfiguration $privateLinkIpConfiguration1, $privateLinkIpConfiguration2 + + $fipconfig = New-AzApplicationGatewayFrontendIPConfig -Name $fipconfigName -PublicIPAddress $publicip -PrivateLinkConfiguration $privateLinkConfiguration + $fp01 = New-AzApplicationGatewayFrontendPort -Name $frontendPort01Name  -Port 80 + $listener01 = New-AzApplicationGatewayHttpListener -Name $listener01Name -Protocol Http -FrontendIPConfiguration $fipconfig -FrontendPort $fp01 + + # backend part + # trusted root cert part + $certFilePath = $basedir + "/ScenarioTests/Data/ApplicationGatewayAuthCert.cer" + $trustedRoot01 = New-AzApplicationGatewayTrustedRootCertificate -Name $trustedRootCertName -CertificateFile $certFilePath + $pool = New-AzApplicationGatewayBackendAddressPool -Name $poolName -BackendIPAddresses www.microsoft.com, www.bing.com + $probeHttp = New-AzApplicationGatewayProbeConfig -Name $probeHttpName -Protocol Https -HostName "probe.com" -Path "/path/path.htm" -Interval 89 -Timeout 88 -UnhealthyThreshold 8 -port 1234 + $poolSetting01 = New-AzApplicationGatewayBackendHttpSetting -Name $poolSetting01Name -Port 443 -Protocol Https -Probe $probeHttp -CookieBasedAffinity Enabled -PickHostNameFromBackendAddress -TrustedRootCertificate $trustedRoot01 + + #rule + $rule01 = New-AzApplicationGatewayRequestRoutingRule -Name $rule01Name -RuleType basic -BackendHttpSettings $poolSetting01 -HttpListener $listener01 -BackendAddressPool $pool + + # sku + $sku = New-AzApplicationGatewaySku -Name Standard_v2 -Tier Standard_v2 + + # autoscale configuration + $autoscaleConfig = New-AzApplicationGatewayAutoscaleConfiguration -MinCapacity 3 + + # Create Application Gateway + $appgw = New-AzApplicationGateway -Name $appgwName -ResourceGroupName $rgname -Zone 1,2 -Location $location -Probes $probeHttp -BackendAddressPools $pool -BackendHttpSettingsCollection $poolSetting01 -FrontendIpConfigurations $fipconfig -GatewayIpConfigurations $gipconfig -FrontendPorts $fp01 -HttpListeners $listener01 -RequestRoutingRules $rule01 -Sku $sku -TrustedRootCertificate $trustedRoot01 -AutoscaleConfiguration $autoscaleConfig -PrivateLinkConfiguration $privateLinkConfiguration + + # Get Application Gateway + $getgw = Get-AzApplicationGateway -Name $appgwName -ResourceGroupName $rgname + + # Operational State + Assert-AreEqual "Running" $getgw.OperationalState + + # Verify PrivateLink Configuration + Assert-NotNull $getgw.PrivateLinkConfigurations + Assert-AreEqual 1 $getgw.PrivateLinkConfigurations.Count + $getPrivateLinkConfig = Get-AzApplicationGatewayPrivateLinkConfiguration -Name $privateLinkConfigName -ApplicationGateway $getgw + Assert-NotNull $getPrivateLinkConfig + Assert-AreEqual $getPrivateLinkConfig.IpConfigurations.Count 2 + + # Verify Frontend Ip has PrivateLink Configuration + $getFipConfig = Get-AzApplicationGatewayFrontendIPConfig -ApplicationGateway $getgw -Name $fipconfigName + Assert-NotNull $getFipconfig + Assert-NotNull $getFipconfig.PrivateLinkConfiguration + Assert-AreEqual $getPrivateLinkConfig.Id $getFipconfig.PrivateLinkConfiguration.Id + + # check autoscale configuration + $autoscaleConfig01 = Get-AzApplicationGatewayAutoscaleConfiguration -ApplicationGateway $getgw + Assert-NotNull $autoscaleConfig01 + Assert-AreEqual $autoscaleConfig01.MinCapacity 3 + + # Set AppGw + $getgw01 = Set-AzApplicationGateway -ApplicationGateway $getgw + + # Cannot add same PrivateLinkConfiguration + Assert-ThrowsLike { Add-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway $getgw01 -Name $privateLinkConfigName -IpConfiguration $privateLinkIpConfiguration1 } "*already exists*" + + # add another private link configuration and change the ip configuration + $getgw01 = Add-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway $getgw01 -Name $privateLinkConfigName2 -IpConfiguration $privateLinkIpConfiguration1 + $privateLinkIpConfiguration3 = New-AzApplicationGatewayPrivateLinkIpConfiguration -Name $privateLinkIpConfigName3 -Subnet $plsSubnet -Primary + $getgw01 = Set-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway $getgw01 -Name $privateLinkConfigName2 -IpConfiguration $privateLinkIpConfiguration3 + $getPrivateLinkConfig = Get-AzApplicationGatewayPrivateLinkConfiguration -Name $privateLinkConfigName2 -ApplicationGateway $getgw01 + Assert-NotNull $getPrivateLinkConfig + Assert-AreEqual $getPrivateLinkConfig.IpConfigurations.Count 1 + Assert-AreEqual $getPrivateLinkConfig.IpConfigurations.Name $privateLinkIpConfigName3 + + # add / remove privateLinkConfiguration + $getgw = Set-AzApplicationGateway -ApplicationGateway $getgw01 + $privateLinkConfigurations = Get-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway $getgw + Assert-NotNull $privateLinkConfigurations + Assert-AreEqual $privateLinkConfigurations.Count 2 + + $getgw01 = Remove-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway $getgw01 -Name $privateLinkConfigName2 + $getgw = Set-AzApplicationGateway -ApplicationGateway $getgw01 + + $privateLinkConfigurations = Get-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway $getgw + Assert-NotNull $privateLinkConfigurations + Assert-AreEqual $privateLinkConfigurations.Count 1 + + # Delete Application Gateway + Remove-AzApplicationGateway -Name $appgwName -ResourceGroupName $rgname -Force + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestApplicationGatewayWithPrivateLinkConfiguration.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestApplicationGatewayWithPrivateLinkConfiguration.json new file mode 100644 index 000000000000..6c5d5b9f7572 --- /dev/null +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestApplicationGatewayWithPrivateLinkConfiguration.json @@ -0,0 +1,11316 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f68e8e6-3f2b-43de-89cc-7d6aee244f41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "24697ada-6a9e-4a43-aed5-1283fea60f5e" + ], + "x-ms-correlation-request-id": [ + "24697ada-6a9e-4a43-aed5-1283fea60f5e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T045503Z:24697ada-6a9e-4a43-aed5-1283fea60f5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "73798" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n },\r\n {\r\n \"applicationId\": \"6d057c82-a784-47ae-8d12-ca7b38cf06b4\",\r\n \"roleDefinitionId\": \"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\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-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\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-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\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-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\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-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchValidatePrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchNotifyPrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZonesInternal\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"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-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"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-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityPartnerProviders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\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-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"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-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoors/frontendEndpoints\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-10-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-10-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"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\": \"None\"\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-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"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-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ipAllocations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/commitInternalAzureNetworkManagerConfiguration\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourcegroups/ps9411?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlZ3JvdXBzL3BzOTQxMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c190b9b0-b44f-4263-8e9f-6ddf3b1e81a2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "5531b658-395a-4c95-9aed-d2a57b270ccc" + ], + "x-ms-correlation-request-id": [ + "5531b658-395a-4c95-9aed-d2a57b270ccc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T045504Z:5531b658-395a-4c95-9aed-d2a57b270ccc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:04 GMT" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411\",\r\n \"name\": \"ps9411\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTM3OT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4689904c-f525-4e71-bab3-3321496a228a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "134410e8-ae00-409c-88ae-2b3628771caa" + ], + "x-ms-correlation-request-id": [ + "134410e8-ae00-409c-88ae-2b3628771caa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T045504Z:134410e8-ae00-409c-88ae-2b3628771caa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "218" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps5379' under resource group 'ps9411' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTM3OT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e5e23057-e159-403c-8bd0-878b8baac817\"" + ], + "x-ms-request-id": [ + "e1fe8b6f-4b54-41a2-9a46-78fffcb1c2a8" + ], + "x-ms-correlation-request-id": [ + "371d0955-5d36-4ecb-9ccd-fbf18dd88d28" + ], + "x-ms-arm-service-request-id": [ + "e5dac7f2-947c-4f7c-83af-b419dd4819d7" + ], + "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:20200612T045510Z:371d0955-5d36-4ecb-9ccd-fbf18dd88d28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:10 GMT" + ], + "Content-Length": [ + "1903" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5379\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379\",\r\n \"etag\": \"W/\\\"e5e23057-e159-403c-8bd0-878b8baac817\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e457e3fe-150d-4044-9f02-4a5c6f2c5698\",\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\": \"ps7503\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\",\r\n \"etag\": \"W/\\\"e5e23057-e159-403c-8bd0-878b8baac817\\\"\",\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\": \"Disabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps7833\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\",\r\n \"etag\": \"W/\\\"e5e23057-e159-403c-8bd0-878b8baac817\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTM3OT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4cf767b8-f7e4-4873-b439-623d3e0cc005" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e5e23057-e159-403c-8bd0-878b8baac817\"" + ], + "x-ms-request-id": [ + "81f379ca-621d-4eb4-9daa-45d0695f6751" + ], + "x-ms-correlation-request-id": [ + "f51d5b2c-c617-41eb-9bad-5200c76cd7f4" + ], + "x-ms-arm-service-request-id": [ + "b85b44a4-fc3e-4529-a8f9-896c304ec9b0" + ], + "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:20200612T045511Z:f51d5b2c-c617-41eb-9bad-5200c76cd7f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:10 GMT" + ], + "Content-Length": [ + "1903" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5379\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379\",\r\n \"etag\": \"W/\\\"e5e23057-e159-403c-8bd0-878b8baac817\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e457e3fe-150d-4044-9f02-4a5c6f2c5698\",\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\": \"ps7503\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\",\r\n \"etag\": \"W/\\\"e5e23057-e159-403c-8bd0-878b8baac817\\\"\",\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\": \"Disabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps7833\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\",\r\n \"etag\": \"W/\\\"e5e23057-e159-403c-8bd0-878b8baac817\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTM3OT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1608355b-7b58-4889-9e9c-d363d23d429c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e5e23057-e159-403c-8bd0-878b8baac817\"" + ], + "x-ms-request-id": [ + "9f7fd4d6-5fa0-45d7-8205-58b7b264a81f" + ], + "x-ms-correlation-request-id": [ + "fbc6f6e8-3d6d-45d3-896c-690f2fa08f16" + ], + "x-ms-arm-service-request-id": [ + "60201e59-7525-4f0b-8b9c-82720fc699d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T045511Z:fbc6f6e8-3d6d-45d3-896c-690f2fa08f16" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:10 GMT" + ], + "Content-Length": [ + "1903" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5379\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379\",\r\n \"etag\": \"W/\\\"e5e23057-e159-403c-8bd0-878b8baac817\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e457e3fe-150d-4044-9f02-4a5c6f2c5698\",\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\": \"ps7503\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\",\r\n \"etag\": \"W/\\\"e5e23057-e159-403c-8bd0-878b8baac817\\\"\",\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\": \"Disabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps7833\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\",\r\n \"etag\": \"W/\\\"e5e23057-e159-403c-8bd0-878b8baac817\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNTM3OT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\r\n },\r\n \"name\": \"ps7503\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\r\n },\r\n \"name\": \"ps7833\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "636ebe69-2a72-4c73-aaf5-b0f9f5e57a44" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1092" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "527814cb-6c66-40b9-8343-b249ac265237" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/527814cb-6c66-40b9-8343-b249ac265237?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "7b26b675-f743-4ed1-908b-b02c4be377b8" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "fa6a70e7-23f4-4ca6-a8d4-9d4f4441743a" + ], + "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:20200612T045507Z:7b26b675-f743-4ed1-908b-b02c4be377b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:07 GMT" + ], + "Content-Length": [ + "1900" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5379\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379\",\r\n \"etag\": \"W/\\\"1907c104-2911-4e40-afb2-d54632809c7e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e457e3fe-150d-4044-9f02-4a5c6f2c5698\",\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\": \"ps7503\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\",\r\n \"etag\": \"W/\\\"1907c104-2911-4e40-afb2-d54632809c7e\\\"\",\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\": \"Disabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps7833\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\",\r\n \"etag\": \"W/\\\"1907c104-2911-4e40-afb2-d54632809c7e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/527814cb-6c66-40b9-8343-b249ac265237?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzUyNzgxNGNiLTZjNjYtNDBiOS04MzQzLWIyNDlhYzI2NTIzNz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "69d51ee7-23a0-45a9-9b80-926a4b16dd12" + ], + "x-ms-correlation-request-id": [ + "2e804c59-77ac-40bb-9190-6b2e0b635ade" + ], + "x-ms-arm-service-request-id": [ + "ea9c34e1-159a-441c-b12a-b8306e7b81b2" + ], + "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:20200612T045510Z:2e804c59-77ac-40bb-9190-6b2e0b635ade" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:10 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxOTA2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8123ca2b-2437-444d-9417-677653ff69f1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "490a62a5-55fe-41ee-a94b-eb50c53236a9" + ], + "x-ms-correlation-request-id": [ + "490a62a5-55fe-41ee-a94b-eb50c53236a9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T045511Z:490a62a5-55fe-41ee-a94b-eb50c53236a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "220" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps1906' under resource group 'ps9411' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxOTA2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"a2b01e19-7c30-4930-bfee-2c00040590e0\"" + ], + "x-ms-request-id": [ + "73afc504-e4c1-4bb4-be05-ee005a55ac5b" + ], + "x-ms-correlation-request-id": [ + "6435890f-269a-476f-88b8-5f597c06eb1b" + ], + "x-ms-arm-service-request-id": [ + "ddfd0176-3ebb-4147-833a-492d040c0ac6" + ], + "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:20200612T045513Z:6435890f-269a-476f-88b8-5f597c06eb1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:13 GMT" + ], + "Content-Length": [ + "630" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1906\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\",\r\n \"etag\": \"W/\\\"a2b01e19-7c30-4930-bfee-2c00040590e0\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3605cd63-30ec-42c9-a0fb-27550c72095a\",\r\n \"ipAddress\": \"40.64.104.221\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxOTA2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6b4954a-c95a-42e9-85ef-03c332405bda" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"a2b01e19-7c30-4930-bfee-2c00040590e0\"" + ], + "x-ms-request-id": [ + "de8d8b77-95ee-432d-ab4f-ce8f26bf8fdc" + ], + "x-ms-correlation-request-id": [ + "a45c80ef-e191-4941-949b-539026df8088" + ], + "x-ms-arm-service-request-id": [ + "2859901d-b269-4af0-9924-5ef9562e1651" + ], + "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:20200612T045514Z:a45c80ef-e191-4941-949b-539026df8088" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:13 GMT" + ], + "Content-Length": [ + "630" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1906\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\",\r\n \"etag\": \"W/\\\"a2b01e19-7c30-4930-bfee-2c00040590e0\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3605cd63-30ec-42c9-a0fb-27550c72095a\",\r\n \"ipAddress\": \"40.64.104.221\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxOTA2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "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\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f0d1eea-a660-44fa-a9d8-4ebc5c3aa5ae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "173" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "b8c9e66b-39bd-40a6-9cec-da8d6ac3fc3c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/b8c9e66b-39bd-40a6-9cec-da8d6ac3fc3c?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "f61b5c2e-4dc2-4122-af50-43d8ae64acd0" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "41e62e0f-12d0-403d-b43b-6bbb204fad1e" + ], + "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:20200612T045512Z:f61b5c2e-4dc2-4122-af50-43d8ae64acd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:12 GMT" + ], + "Content-Length": [ + "594" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1906\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\",\r\n \"etag\": \"W/\\\"be5ab7ab-6857-4d18-9291-68ca93f773e8\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3605cd63-30ec-42c9-a0fb-27550c72095a\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/b8c9e66b-39bd-40a6-9cec-da8d6ac3fc3c?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2I4YzllNjZiLTM5YmQtNDBhNi05Y2VjLWRhOGQ2YWMzZmMzYz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a12b93dc-98e8-4a49-9697-2dc81482cb52" + ], + "x-ms-correlation-request-id": [ + "99705944-e115-40cf-91ab-64d88095fdf1" + ], + "x-ms-arm-service-request-id": [ + "18189fe2-8543-4a7d-8f23-f5ced2ce7d4a" + ], + "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:20200612T045513Z:99705944-e115-40cf-91ab-64d88095fdf1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:13 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e002916a-7538-489c-a76c-45c338e0fe65" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ac2e6481-84da-46d7-86b3-92d9ec153747" + ], + "x-ms-correlation-request-id": [ + "ac2e6481-84da-46d7-86b3-92d9ec153747" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T045514Z:ac2e6481-84da-46d7-86b3-92d9ec153747" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "222" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/applicationGateways/ps6233' under resource group 'ps9411' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\"" + ], + "x-ms-request-id": [ + "0c403245-35b9-4033-b145-367e31bc1f07" + ], + "x-ms-correlation-request-id": [ + "47082221-79f9-431b-bbd4-91fb1a56560e" + ], + "x-ms-arm-service-request-id": [ + "303a2ab6-ce0a-4c19-83a0-a4b12881b601" + ], + "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:20200612T045907Z:47082221-79f9-431b-bbd4-91fb1a56560e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:59:06 GMT" + ], + "Content-Length": [ + "13907" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3c88cc8-9743-4f86-9532-535b7118e2da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\"" + ], + "x-ms-request-id": [ + "0fe0a804-7f3b-430a-aafc-54720abd0c68" + ], + "x-ms-correlation-request-id": [ + "b4104cae-7404-4f32-9cc4-c6582656055e" + ], + "x-ms-arm-service-request-id": [ + "d779eb00-aa42-44c7-8b61-04f164f10e14" + ], + "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:20200612T045907Z:b4104cae-7404-4f32-9cc4-c6582656055e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:59:06 GMT" + ], + "Content-Length": [ + "13907" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13d79a00-4425-453e-a47f-2f98ad2a88b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\"" + ], + "x-ms-request-id": [ + "821be957-ef71-4489-8859-fbf1b6d2c246" + ], + "x-ms-correlation-request-id": [ + "ed7fa31c-288d-4067-b84f-e0075335e791" + ], + "x-ms-arm-service-request-id": [ + "7c154ead-0c57-4281-80fe-b802e3504317" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T045908Z:ed7fa31c-288d-4067-b84f-e0075335e791" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:59:07 GMT" + ], + "Content-Length": [ + "13907" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c25739b5-0185-4d9b-9b70-dde53516d121" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\"" + ], + "x-ms-request-id": [ + "1fc584f2-ea52-4cb8-9ddf-b2b2dd589ef6" + ], + "x-ms-correlation-request-id": [ + "8f247a38-83cd-473d-8234-0d81ff9304ed" + ], + "x-ms-arm-service-request-id": [ + "bc5d7a4a-273c-44fb-af72-372880c0aba2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T045908Z:8f247a38-83cd-473d-8234-0d81ff9304ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:59:08 GMT" + ], + "Content-Length": [ + "13907" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"b424b34a-9b71-4f9a-bdcd-811a6a866e6b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"759c6090-9896-487e-8f82-964881c0c6ac\"" + ], + "x-ms-request-id": [ + "483d9958-4cde-4de5-b242-94af86ee823b" + ], + "x-ms-correlation-request-id": [ + "37b83cf9-330f-40de-94e8-6cda63be906a" + ], + "x-ms-arm-service-request-id": [ + "1e2e6efd-7d32-4fdf-99e9-7438d4e61ebb" + ], + "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:20200612T045909Z:37b83cf9-330f-40de-94e8-6cda63be906a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:59:09 GMT" + ], + "Content-Length": [ + "13907" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81b6d59c-100a-4b12-a1a7-6599413df843" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"759c6090-9896-487e-8f82-964881c0c6ac\"" + ], + "x-ms-request-id": [ + "dd7e4267-a703-4bfb-b345-4d8e24f58379" + ], + "x-ms-correlation-request-id": [ + "7d7a658a-aa0e-462b-8a06-4bc969fb8705" + ], + "x-ms-arm-service-request-id": [ + "94246a3d-bb29-4e98-a989-68b38301a43b" + ], + "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:20200612T045909Z:7d7a658a-aa0e-462b-8a06-4bc969fb8705" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:59:09 GMT" + ], + "Content-Length": [ + "13907" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f55348d2-bd09-4611-a632-78a467a4a9c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"759c6090-9896-487e-8f82-964881c0c6ac\"" + ], + "x-ms-request-id": [ + "de87fb3a-1f67-490d-a7aa-6c583ed8c80a" + ], + "x-ms-correlation-request-id": [ + "f91b503f-3f43-4fc9-af06-2e5205c21467" + ], + "x-ms-arm-service-request-id": [ + "9ea02417-a928-4d6f-a60d-fa5fcd3bf685" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T045909Z:f91b503f-3f43-4fc9-af06-2e5205c21467" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:59:09 GMT" + ], + "Content-Length": [ + "13907" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\"" + ], + "x-ms-request-id": [ + "70b759d4-78f5-4ccb-ace8-2a55f67db3fe" + ], + "x-ms-correlation-request-id": [ + "4014c3cc-0cb9-4277-b518-96c0d7ea8f94" + ], + "x-ms-arm-service-request-id": [ + "e22862ba-f540-444a-ade6-687f473cf854" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T050422Z:4014c3cc-0cb9-4277-b518-96c0d7ea8f94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:04:21 GMT" + ], + "Content-Length": [ + "15259" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ps1116\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps1116\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps553\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps1116/ipConfigurations/ps553\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e22cb76-10e0-4115-b725-60093e41e2b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\"" + ], + "x-ms-request-id": [ + "4a08ead8-953a-416f-b221-c1996939d68f" + ], + "x-ms-correlation-request-id": [ + "ca4cae14-7fe0-48b4-8815-2529a0ea7b72" + ], + "x-ms-arm-service-request-id": [ + "53fed3c8-2990-4977-a636-39f8295952d7" + ], + "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:20200612T050422Z:ca4cae14-7fe0-48b4-8815-2529a0ea7b72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:04:22 GMT" + ], + "Content-Length": [ + "15259" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ps1116\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps1116\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps553\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps1116/ipConfigurations/ps553\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d26f6c74-3424-44e6-9c07-4f59c0858f8d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\"" + ], + "x-ms-request-id": [ + "abd1a406-ad40-492b-bb1f-8f0667276be1" + ], + "x-ms-correlation-request-id": [ + "af35a7c6-951a-47f5-bdaf-b6f602239d34" + ], + "x-ms-arm-service-request-id": [ + "8a37fb41-e2a3-489e-9625-fd5341866a36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T050422Z:af35a7c6-951a-47f5-bdaf-b6f602239d34" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:04:22 GMT" + ], + "Content-Length": [ + "15259" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ps1116\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps1116\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps553\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps1116/ipConfigurations/ps553\",\r\n \"etag\": \"W/\\\"f99cc443-84a6-40c9-86f4-5ee8e64064bf\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\"" + ], + "x-ms-request-id": [ + "3c24de06-47f5-4961-8fbb-e2329151cecc" + ], + "x-ms-correlation-request-id": [ + "ec3b4a48-428b-4286-8b00-ed4681e3d623" + ], + "x-ms-arm-service-request-id": [ + "d968841d-d798-47e7-b50c-e7e23b7018ed" + ], + "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:20200612T050444Z:ec3b4a48-428b-4286-8b00-ed4681e3d623" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:04:43 GMT" + ], + "Content-Length": [ + "13907" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e87a5479-26e7-4b18-ba5f-cf6f0765b622" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\"" + ], + "x-ms-request-id": [ + "7ea46df5-96ac-406d-a7c4-fc7aaf173d24" + ], + "x-ms-correlation-request-id": [ + "58e1e7e8-f443-413d-96f8-7172681dda16" + ], + "x-ms-arm-service-request-id": [ + "029f1a3b-426a-421d-aec0-beee75bf7445" + ], + "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:20200612T050444Z:58e1e7e8-f443-413d-96f8-7172681dda16" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:04:43 GMT" + ], + "Content-Length": [ + "13907" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"1f00daca-6de6-4a0c-8dea-a3232275dcf3\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIpConfigurations/ps2068\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n },\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIpConfigurations/ps9969\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"minServers\": 0,\r\n \"port\": 1234\r\n },\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"pickHostNameFromBackendAddress\": true\r\n },\r\n \"name\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIpConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"hostNames\": []\r\n },\r\n \"name\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n },\r\n \"name\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"ps6356\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n },\r\n \"primary\": false\r\n },\r\n \"name\": \"ps8536\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n ],\r\n \"customErrorConfigurations\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "678e4b44-c1b5-4875-aed4-735582743895" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "8500" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "d5380c94-a796-4f93-b175-a077af9f901c" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "548d6684-102c-4737-95ed-9856df73ee0f" + ], + "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:20200612T045516Z:d5380c94-a796-4f93-b175-a077af9f901c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:15 GMT" + ], + "Content-Length": [ + "13894" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"8c0e8ba9-3083-457c-8af1-2517f047f58a\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"8c0e8ba9-3083-457c-8af1-2517f047f58a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"8c0e8ba9-3083-457c-8af1-2517f047f58a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"8c0e8ba9-3083-457c-8af1-2517f047f58a\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"8c0e8ba9-3083-457c-8af1-2517f047f58a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"8c0e8ba9-3083-457c-8af1-2517f047f58a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"8c0e8ba9-3083-457c-8af1-2517f047f58a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"8c0e8ba9-3083-457c-8af1-2517f047f58a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"8c0e8ba9-3083-457c-8af1-2517f047f58a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"8c0e8ba9-3083-457c-8af1-2517f047f58a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"8c0e8ba9-3083-457c-8af1-2517f047f58a\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"8c0e8ba9-3083-457c-8af1-2517f047f58a\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"8c0e8ba9-3083-457c-8af1-2517f047f58a\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n },\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"port\": 1234\r\n },\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"pickHostNameFromBackendAddress\": true\r\n },\r\n \"name\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"hostNames\": []\r\n },\r\n \"name\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n },\r\n \"name\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n },\r\n \"primary\": false\r\n },\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n ],\r\n \"customErrorConfigurations\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d68de7a9-d9fc-4195-bd7e-886e65056410" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "9193" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f39314a4-841c-4eb0-8469-b25a7bf2c4f3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/f39314a4-841c-4eb0-8469-b25a7bf2c4f3?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "322b4671-e5dc-44b6-8617-4d3e3aac3c32" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "c4591b5e-ea99-4c75-930c-394f1346bd92" + ], + "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:20200612T045909Z:322b4671-e5dc-44b6-8617-4d3e3aac3c32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:59:09 GMT" + ], + "Content-Length": [ + "13907" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"759c6090-9896-487e-8f82-964881c0c6ac\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n },\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"port\": 1234\r\n },\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"pickHostNameFromBackendAddress\": true\r\n },\r\n \"name\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"hostNames\": []\r\n },\r\n \"name\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n },\r\n \"name\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n },\r\n \"primary\": false\r\n },\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"ps553\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps1116\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps1116\"\r\n }\r\n ],\r\n \"customErrorConfigurations\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28c761df-ce6d-47b5-9a26-c04e9351b4b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "9917" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "17c9d070-9835-455a-b048-f1a452dd11ea" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "e33366bf-25ff-4aa2-ac7a-e2471d0a3064" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "a2c26302-5d77-4d57-8ef7-4a3d06a3a0a4" + ], + "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:20200612T045910Z:e33366bf-25ff-4aa2-ac7a-e2471d0a3064" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:59:10 GMT" + ], + "Content-Length": [ + "15244" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"0c5decf1-5c97-465c-b21b-979fe67ebb87\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"0c5decf1-5c97-465c-b21b-979fe67ebb87\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"0c5decf1-5c97-465c-b21b-979fe67ebb87\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"0c5decf1-5c97-465c-b21b-979fe67ebb87\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"0c5decf1-5c97-465c-b21b-979fe67ebb87\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"0c5decf1-5c97-465c-b21b-979fe67ebb87\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"0c5decf1-5c97-465c-b21b-979fe67ebb87\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"0c5decf1-5c97-465c-b21b-979fe67ebb87\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"0c5decf1-5c97-465c-b21b-979fe67ebb87\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"0c5decf1-5c97-465c-b21b-979fe67ebb87\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"0c5decf1-5c97-465c-b21b-979fe67ebb87\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"0c5decf1-5c97-465c-b21b-979fe67ebb87\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"0c5decf1-5c97-465c-b21b-979fe67ebb87\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ps1116\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps1116\",\r\n \"etag\": \"W/\\\"0c5decf1-5c97-465c-b21b-979fe67ebb87\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps553\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps1116/ipConfigurations/ps553\",\r\n \"etag\": \"W/\\\"0c5decf1-5c97-465c-b21b-979fe67ebb87\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n },\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"port\": 1234\r\n },\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"pickHostNameFromBackendAddress\": true\r\n },\r\n \"name\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"hostNames\": []\r\n },\r\n \"name\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n },\r\n \"name\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n },\r\n \"primary\": false\r\n },\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n ],\r\n \"customErrorConfigurations\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b9c8854-5067-4157-a1f3-9d28ab5bf4b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "9193" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bc6f8b59-43c7-41d0-84bd-f20b77caf2bc" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/bc6f8b59-43c7-41d0-84bd-f20b77caf2bc?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "413b8eba-cf37-41fa-8299-c8b45d8214f3" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "91dddc1b-e4d4-4da0-846d-faf1d90feafd" + ], + "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:20200612T050423Z:413b8eba-cf37-41fa-8299-c8b45d8214f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:04:23 GMT" + ], + "Content-Length": [ + "13894" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6233\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233\",\r\n \"etag\": \"W/\\\"b63535a4-24ed-4f6a-8507-bb120da6ba91\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"536a27e1-1b9b-4c77-8b61-1fc4709a90ac\",\r\n \"sku\": {\r\n \"name\": \"Standard_v2\",\r\n \"tier\": \"Standard_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps2068\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/gatewayIPConfigurations/ps2068\",\r\n \"etag\": \"W/\\\"b63535a4-24ed-4f6a-8507-bb120da6ba91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7503\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps2825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\",\r\n \"etag\": \"W/\\\"b63535a4-24ed-4f6a-8507-bb120da6ba91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\"\r\n }\r\n ],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9969\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\",\r\n \"etag\": \"W/\\\"b63535a4-24ed-4f6a-8507-bb120da6ba91\\\"\",\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/publicIPAddresses/ps1906\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n }\r\n ],\r\n \"privateLinkConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps4647\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\",\r\n \"etag\": \"W/\\\"b63535a4-24ed-4f6a-8507-bb120da6ba91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\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\": \"ps3755\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\",\r\n \"etag\": \"W/\\\"b63535a4-24ed-4f6a-8507-bb120da6ba91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"www.microsoft.com\"\r\n },\r\n {\r\n \"ipAddress\": \"www.bing.com\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps7213\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\",\r\n \"etag\": \"W/\\\"b63535a4-24ed-4f6a-8507-bb120da6ba91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"pickHostNameFromBackendAddress\": true,\r\n \"requestTimeout\": 30,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\"\r\n },\r\n \"trustedRootCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/trustedRootCertificates/ps2825\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps879\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\",\r\n \"etag\": \"W/\\\"b63535a4-24ed-4f6a-8507-bb120da6ba91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendPorts/ps4647\"\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/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\"\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\": \"ps9749\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/requestRoutingRules/ps9749\",\r\n \"etag\": \"W/\\\"b63535a4-24ed-4f6a-8507-bb120da6ba91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/httpListeners/ps879\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendAddressPools/ps3755\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps8825\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/probes/ps8825\",\r\n \"etag\": \"W/\\\"b63535a4-24ed-4f6a-8507-bb120da6ba91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Https\",\r\n \"host\": \"probe.com\",\r\n \"port\": 1234,\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": false,\r\n \"minServers\": 0,\r\n \"match\": {},\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/backendHttpSettingsCollection/ps7213\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [],\r\n \"redirectConfigurations\": [],\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"ps5171\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171\",\r\n \"etag\": \"W/\\\"b63535a4-24ed-4f6a-8507-bb120da6ba91\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps6356\",\r\n \"etag\": \"W/\\\"b63535a4-24ed-4f6a-8507-bb120da6ba91\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ps8536\",\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/privateLinkConfigurations/ps5171/ipConfigurations/ps8536\",\r\n \"etag\": \"W/\\\"b63535a4-24ed-4f6a-8507-bb120da6ba91\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways/privateLinkConfigurations/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/virtualNetworks/ps5379/subnets/ps7833\"\r\n }\r\n }\r\n }\r\n ],\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233/frontendIPConfigurations/ps9969\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d45ca2ff-0452-4698-8d83-b45d2805a62e" + ], + "x-ms-correlation-request-id": [ + "300366f0-811c-465a-9987-d1949467add4" + ], + "x-ms-arm-service-request-id": [ + "ed0abe2a-02fc-4bb8-9088-d9a7b321e6ee" + ], + "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:20200612T045526Z:300366f0-811c-465a-9987-d1949467add4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:25 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ad2b9e45-9069-49b6-89b6-253c8b545045" + ], + "x-ms-correlation-request-id": [ + "3ad63967-0fb7-4957-9fee-bc7ba06402c2" + ], + "x-ms-arm-service-request-id": [ + "77e6f06d-b541-42f8-b8e1-2441168c1268" + ], + "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:20200612T045536Z:3ad63967-0fb7-4957-9fee-bc7ba06402c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:35 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dc85342c-befb-496f-b80d-2b353ffbb81d" + ], + "x-ms-correlation-request-id": [ + "7e8536b3-69f6-4b4a-978f-02cf9152296b" + ], + "x-ms-arm-service-request-id": [ + "e4963d83-f8ac-4fde-a677-a0ffe5422390" + ], + "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:20200612T045546Z:7e8536b3-69f6-4b4a-978f-02cf9152296b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ebb4257e-b7fc-404e-a2df-a5694211dad0" + ], + "x-ms-correlation-request-id": [ + "73c7f1e4-e52f-4e75-9532-67715a59e6ca" + ], + "x-ms-arm-service-request-id": [ + "ec72f599-cd3d-414c-aa5e-252981e4daba" + ], + "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:20200612T045556Z:73c7f1e4-e52f-4e75-9532-67715a59e6ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:55:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fa01f8a1-7ede-46d6-a18f-2636f458e719" + ], + "x-ms-correlation-request-id": [ + "4d3bbd9a-93c4-45e7-a054-73731cb6065e" + ], + "x-ms-arm-service-request-id": [ + "90794fbe-a28b-48f9-9b08-3e273b51c9ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T045606Z:4d3bbd9a-93c4-45e7-a054-73731cb6065e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:56: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1c066792-6bf6-4e5d-aa9b-87dbee9dc63b" + ], + "x-ms-correlation-request-id": [ + "3d0b12ed-c016-4310-922f-aff9dd6e9f09" + ], + "x-ms-arm-service-request-id": [ + "5a77a077-04b6-47b9-aaa1-74fea376fc2f" + ], + "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:20200612T045616Z:3d0b12ed-c016-4310-922f-aff9dd6e9f09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:56:16 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3fc9ced6-56e7-4fb1-8568-d702c05246eb" + ], + "x-ms-correlation-request-id": [ + "cfed0d3f-f6d4-4e66-90be-a9888b5618c2" + ], + "x-ms-arm-service-request-id": [ + "f929ea82-2d10-4493-bcae-9bbf9d715ca9" + ], + "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:20200612T045626Z:cfed0d3f-f6d4-4e66-90be-a9888b5618c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:56:26 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bd36f95d-16bc-4cc3-bdb6-cd49dba9d144" + ], + "x-ms-correlation-request-id": [ + "a29a189e-5655-44d2-a91c-b9d2905c99a2" + ], + "x-ms-arm-service-request-id": [ + "22cf0709-885e-4aa8-ba57-0a579972faaa" + ], + "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:20200612T045636Z:a29a189e-5655-44d2-a91c-b9d2905c99a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:56: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4c6d015e-6180-424c-972d-7ac1b7a3875d" + ], + "x-ms-correlation-request-id": [ + "dd848fd9-b55c-4528-81ee-f7d310e239ea" + ], + "x-ms-arm-service-request-id": [ + "7a8ed469-60fd-4805-9e8d-b0dd40fc2997" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T045646Z:dd848fd9-b55c-4528-81ee-f7d310e239ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:56: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2f884338-826b-4503-86e2-92c7385e9bcb" + ], + "x-ms-correlation-request-id": [ + "7261f9fe-e490-4368-92b7-a8a9a9ae206d" + ], + "x-ms-arm-service-request-id": [ + "06982218-eda7-48dc-8d88-b564f1ac2025" + ], + "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:20200612T045656Z:7261f9fe-e490-4368-92b7-a8a9a9ae206d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:56: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "df885b3e-1906-4ae7-b0da-6333197b1d14" + ], + "x-ms-correlation-request-id": [ + "d8f2e9c7-4e96-4eef-ae5f-4027494029eb" + ], + "x-ms-arm-service-request-id": [ + "9107fc5a-d29a-4671-89cd-f95cf9ce364f" + ], + "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:20200612T045706Z:d8f2e9c7-4e96-4eef-ae5f-4027494029eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:57: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "21f47b34-ff81-4f65-8054-73e033625534" + ], + "x-ms-correlation-request-id": [ + "71c437b1-2230-42f0-9f74-41d40bd0f295" + ], + "x-ms-arm-service-request-id": [ + "1cf4baba-a902-45ec-90af-d4e16aaf0e4c" + ], + "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:20200612T045716Z:71c437b1-2230-42f0-9f74-41d40bd0f295" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:57:15 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e21b210b-ba4a-41c7-bc1f-089519855417" + ], + "x-ms-correlation-request-id": [ + "e3a1bcd0-32bb-451c-a732-ae5185d38c7f" + ], + "x-ms-arm-service-request-id": [ + "c15a1eaf-5d2f-421f-9835-f872146bd591" + ], + "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:20200612T045726Z:e3a1bcd0-32bb-451c-a732-ae5185d38c7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:57:26 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3bd88a54-2e0b-4f63-a415-e1b7d9b637f5" + ], + "x-ms-correlation-request-id": [ + "a10634b2-df68-4c38-8ef1-675a44e3381b" + ], + "x-ms-arm-service-request-id": [ + "45a856b9-20f5-4f02-b7e2-38f1a7bc4299" + ], + "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:20200612T045737Z:a10634b2-df68-4c38-8ef1-675a44e3381b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:57: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "eb6b89c7-c4a3-4686-8b01-96982a1abb52" + ], + "x-ms-correlation-request-id": [ + "bdf2f0e0-f4a4-4317-8b73-1e46dd5203c5" + ], + "x-ms-arm-service-request-id": [ + "c0b9a57b-24b6-4f8e-ae52-8d600d997e11" + ], + "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:20200612T045747Z:bdf2f0e0-f4a4-4317-8b73-1e46dd5203c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:57: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "36a87e4a-6425-4a52-b5fa-8c41339dcf56" + ], + "x-ms-correlation-request-id": [ + "2821a884-0783-4209-9f55-e62b5873658b" + ], + "x-ms-arm-service-request-id": [ + "4b796cde-fb12-4312-bc38-353a2bdd7f26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T045757Z:2821a884-0783-4209-9f55-e62b5873658b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:57: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9dc45a24-4936-4129-a3e2-6bc4448c5ca7" + ], + "x-ms-correlation-request-id": [ + "7673fde1-8c14-4dfd-947b-a96a94ad1bf3" + ], + "x-ms-arm-service-request-id": [ + "6b1235be-c770-4de7-940b-3c08606211d1" + ], + "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:20200612T045807Z:7673fde1-8c14-4dfd-947b-a96a94ad1bf3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:58: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6a67a418-9809-471e-8636-4f10892760db" + ], + "x-ms-correlation-request-id": [ + "166d53dd-2d54-43b4-95f4-d13990b3b74f" + ], + "x-ms-arm-service-request-id": [ + "da0ee5a3-3823-46d5-85d6-6e5d7612a17e" + ], + "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:20200612T045817Z:166d53dd-2d54-43b4-95f4-d13990b3b74f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:58:16 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "df1de49c-b152-4d4d-8b3c-44002228c45b" + ], + "x-ms-correlation-request-id": [ + "4fff1290-6284-4391-b95b-b34e061cffa8" + ], + "x-ms-arm-service-request-id": [ + "dc069ae2-bd27-4182-b671-aaeff420a893" + ], + "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:20200612T045827Z:4fff1290-6284-4391-b95b-b34e061cffa8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:58:26 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5096ef6c-10f1-46f2-858d-921e7c31ccef" + ], + "x-ms-correlation-request-id": [ + "6e312c86-488f-4fd9-ba18-ca825638a0d6" + ], + "x-ms-arm-service-request-id": [ + "a98b9819-b248-4dc7-b972-2297cd02443f" + ], + "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:20200612T045837Z:6e312c86-488f-4fd9-ba18-ca825638a0d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:58: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "606ef70f-3145-451f-835b-23c360908480" + ], + "x-ms-correlation-request-id": [ + "cc748ce3-8cd6-4c89-a937-84d03b8dea14" + ], + "x-ms-arm-service-request-id": [ + "218b7ba9-1d9a-4511-b213-8ba20e381f10" + ], + "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:20200612T045847Z:cc748ce3-8cd6-4c89-a937-84d03b8dea14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:58: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9ed24eec-b90b-4e6c-bda9-be2bec531baf" + ], + "x-ms-correlation-request-id": [ + "455063ab-df28-4e5b-b5f2-b7da1055320b" + ], + "x-ms-arm-service-request-id": [ + "e8b85973-1f6c-452d-81c4-e9eca31c4ad5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T045857Z:455063ab-df28-4e5b-b5f2-b7da1055320b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:58: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/ae8bb960-cb32-4b5c-9f0c-675ab82b0f4f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2FlOGJiOTYwLWNiMzItNGI1Yy05ZjBjLTY3NWFiODJiMGY0Zj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "076d8d75-4e41-4581-a0a6-528c9eb6cc09" + ], + "x-ms-correlation-request-id": [ + "453d6be8-756f-41c5-a211-b05e601ae481" + ], + "x-ms-arm-service-request-id": [ + "779c9e75-8ca7-44cc-ae87-1622e8255ec2" + ], + "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:20200612T045907Z:453d6be8-756f-41c5-a211-b05e601ae481" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:59:06 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f77f2783-812f-4800-9bcd-ef1d492c871a" + ], + "x-ms-correlation-request-id": [ + "4111214f-1f71-40f5-a46d-2f568ae80951" + ], + "x-ms-arm-service-request-id": [ + "cd7dc72f-b2b4-436a-9789-4533db35fb08" + ], + "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:20200612T045920Z:4111214f-1f71-40f5-a46d-2f568ae80951" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:59: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e718357e-18ae-4329-9051-371270b82811" + ], + "x-ms-correlation-request-id": [ + "4a08ca5b-5bb2-4ca4-80e6-c7feef655b94" + ], + "x-ms-arm-service-request-id": [ + "4ce6d1f2-1450-41d8-88f4-68dbfa80432a" + ], + "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:20200612T045930Z:4a08ca5b-5bb2-4ca4-80e6-c7feef655b94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:59: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "394710c8-8327-4717-99ee-388bc1fd0334" + ], + "x-ms-correlation-request-id": [ + "a7c2916f-5bab-48f7-9561-135b7f098efb" + ], + "x-ms-arm-service-request-id": [ + "d164a7a7-9e5c-430a-89f3-836a1ab8512b" + ], + "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:20200612T045940Z:a7c2916f-5bab-48f7-9561-135b7f098efb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:59: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "17cc47ef-bb81-4616-945d-61b595123d8d" + ], + "x-ms-correlation-request-id": [ + "d0bdac7b-1361-4471-8de8-edbd84de8637" + ], + "x-ms-arm-service-request-id": [ + "d74dc617-b9f4-4a85-8806-1139cbf385ad" + ], + "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:20200612T045950Z:d0bdac7b-1361-4471-8de8-edbd84de8637" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 04:59: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5a900e72-416c-4309-9120-920bc08fe498" + ], + "x-ms-correlation-request-id": [ + "fc21c66b-6718-445a-8807-580738842abd" + ], + "x-ms-arm-service-request-id": [ + "8302112f-3cc5-448a-a806-79515c861d9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T050000Z:fc21c66b-6718-445a-8807-580738842abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:00: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2f6724bc-6f22-4dd4-8176-67bea4cd9f4b" + ], + "x-ms-correlation-request-id": [ + "92bd30c2-651f-4357-8d7b-3f3b0d2aa61d" + ], + "x-ms-arm-service-request-id": [ + "a406af8c-d763-45e8-8504-ab1da07653b5" + ], + "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:20200612T050010Z:92bd30c2-651f-4357-8d7b-3f3b0d2aa61d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:00: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cea3cbd9-ff2f-4075-8ed5-03ad52bb7305" + ], + "x-ms-correlation-request-id": [ + "fa6476c3-1756-4f2f-8502-416ce4e1e8d3" + ], + "x-ms-arm-service-request-id": [ + "70c46f6c-23af-406f-992a-a982c69a8d9f" + ], + "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:20200612T050021Z:fa6476c3-1756-4f2f-8502-416ce4e1e8d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:00: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0c2311b2-adca-4b71-b3bd-fc588800a107" + ], + "x-ms-correlation-request-id": [ + "20e6e05c-bc0b-4182-8ab4-28805c5e04fe" + ], + "x-ms-arm-service-request-id": [ + "7bd4b858-b326-426b-840a-ed51e90f62c0" + ], + "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:20200612T050031Z:20e6e05c-bc0b-4182-8ab4-28805c5e04fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:00: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "07076761-f4c7-4a50-97d6-123c3141bb80" + ], + "x-ms-correlation-request-id": [ + "46709483-e550-4042-bd8a-c92e6ceae042" + ], + "x-ms-arm-service-request-id": [ + "095ce12b-7a9b-4771-ba2f-996de7b1306d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T050041Z:46709483-e550-4042-bd8a-c92e6ceae042" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:00: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6de129e0-f171-4cf0-abcf-bb4a91581e3e" + ], + "x-ms-correlation-request-id": [ + "27642094-787f-41fc-b99f-207169a2eb91" + ], + "x-ms-arm-service-request-id": [ + "5cf5704a-a274-44e2-a4ce-f16cbc4a7699" + ], + "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:20200612T050051Z:27642094-787f-41fc-b99f-207169a2eb91" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:00: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c7710bba-f5b6-4797-a9f3-4b0c77968236" + ], + "x-ms-correlation-request-id": [ + "8357987f-8347-466c-9009-75389ff8847d" + ], + "x-ms-arm-service-request-id": [ + "b8d81dfb-dbb1-4a1a-add1-130f5038fea1" + ], + "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:20200612T050101Z:8357987f-8347-466c-9009-75389ff8847d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:01: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bd0368cf-047b-47a9-9936-cf1bce37e7f9" + ], + "x-ms-correlation-request-id": [ + "42299eae-92e8-4576-a52b-1ee7e50623b4" + ], + "x-ms-arm-service-request-id": [ + "74227a1f-df55-46d5-adb6-7f945e8339ad" + ], + "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:20200612T050111Z:42299eae-92e8-4576-a52b-1ee7e50623b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:01: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b70b1564-e19e-4da4-b830-f6558c8045f0" + ], + "x-ms-correlation-request-id": [ + "542d314c-89ed-41eb-ba75-0a72bd4bab0a" + ], + "x-ms-arm-service-request-id": [ + "fb7f9c84-84ad-459a-b1bb-cfacd234780b" + ], + "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:20200612T050121Z:542d314c-89ed-41eb-ba75-0a72bd4bab0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:01: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4e5baa15-cd9a-4b2b-9586-49f2130c1b02" + ], + "x-ms-correlation-request-id": [ + "c4b50d71-b47e-4d41-b1f3-d5b61ff1a44f" + ], + "x-ms-arm-service-request-id": [ + "5e5f662e-2a0c-473d-825c-b603df450c8b" + ], + "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:20200612T050131Z:c4b50d71-b47e-4d41-b1f3-d5b61ff1a44f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:01: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bf5e8b79-383f-45c9-bc78-f5a791752011" + ], + "x-ms-correlation-request-id": [ + "7e9bfaa4-207e-4275-bbc9-e8a8853819f4" + ], + "x-ms-arm-service-request-id": [ + "1e180ce1-1abc-49e3-845e-b6bff79be6a4" + ], + "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:20200612T050141Z:7e9bfaa4-207e-4275-bbc9-e8a8853819f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:01: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "57d3725d-2d80-49e5-98e1-f66cba290169" + ], + "x-ms-correlation-request-id": [ + "8959c819-4b54-4e64-b97b-ac31f12a0719" + ], + "x-ms-arm-service-request-id": [ + "2e7730f2-079a-49df-9459-e925f3ea7ff8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T050151Z:8959c819-4b54-4e64-b97b-ac31f12a0719" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:01: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d055eeb1-65d2-4d6b-b1a7-b0e15b819887" + ], + "x-ms-correlation-request-id": [ + "b74a3e66-570f-40df-9d88-935013bf98a8" + ], + "x-ms-arm-service-request-id": [ + "c5756c46-720e-4fd4-81fc-76eca239b1cb" + ], + "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:20200612T050201Z:b74a3e66-570f-40df-9d88-935013bf98a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:02: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bbce196e-3e0b-4339-9ceb-35bec40a32a9" + ], + "x-ms-correlation-request-id": [ + "7d01f43a-1d00-4916-bba4-ee8b0fb7dbe7" + ], + "x-ms-arm-service-request-id": [ + "d434f541-3d6d-4ea9-86f4-b2a4a6d4067f" + ], + "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:20200612T050211Z:7d01f43a-1d00-4916-bba4-ee8b0fb7dbe7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:02: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "750b6806-0d77-42df-8196-b5d708fc407a" + ], + "x-ms-correlation-request-id": [ + "41c97806-9e3a-4bea-b04d-0b315439b02d" + ], + "x-ms-arm-service-request-id": [ + "11b8673a-bf24-4f34-bad9-21731b711d7d" + ], + "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:20200612T050221Z:41c97806-9e3a-4bea-b04d-0b315439b02d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:02: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "577af42d-2866-4d5b-b89e-eb1d35609a8d" + ], + "x-ms-correlation-request-id": [ + "2d2e7a55-7788-4a63-bc74-a3f3b9eaf139" + ], + "x-ms-arm-service-request-id": [ + "0d227324-89cb-4e2f-b2f8-a38d0cefa372" + ], + "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:20200612T050231Z:2d2e7a55-7788-4a63-bc74-a3f3b9eaf139" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:02: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "481c1370-b719-4eb0-9d77-dd6b7cc1845c" + ], + "x-ms-correlation-request-id": [ + "beb8aac3-272a-4221-b4d0-addbc56e9ea1" + ], + "x-ms-arm-service-request-id": [ + "25006f1a-52d3-47aa-8735-e7ed6c8af6f6" + ], + "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:20200612T050241Z:beb8aac3-272a-4221-b4d0-addbc56e9ea1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:02: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b2234639-4e74-4245-87e2-d999f00dc424" + ], + "x-ms-correlation-request-id": [ + "80d36f62-a7a7-470f-8a5d-8766345a6c70" + ], + "x-ms-arm-service-request-id": [ + "a1e91802-21bd-41a7-b5d7-0a434945d126" + ], + "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:20200612T050252Z:80d36f62-a7a7-470f-8a5d-8766345a6c70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:02: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "35ac1d83-01fd-4c0b-92ea-b6b6daef710f" + ], + "x-ms-correlation-request-id": [ + "5b9aff97-0372-4039-be56-a1b787e945eb" + ], + "x-ms-arm-service-request-id": [ + "f26afbdb-0278-42b7-b553-f2dc064e0b3f" + ], + "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:20200612T050302Z:5b9aff97-0372-4039-be56-a1b787e945eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:03: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9074e6bf-3399-4c7a-aa8f-f11b3a65cf17" + ], + "x-ms-correlation-request-id": [ + "5961af86-caca-4316-9738-5cddf31a7694" + ], + "x-ms-arm-service-request-id": [ + "5cff6fe9-5cc2-47f8-850a-14271a9de547" + ], + "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:20200612T050312Z:5961af86-caca-4316-9738-5cddf31a7694" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:03: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e551c228-baa2-4608-bf37-701aaf2123e4" + ], + "x-ms-correlation-request-id": [ + "21db56bc-c387-4e16-8c1c-8c390058c3fd" + ], + "x-ms-arm-service-request-id": [ + "ad368870-ace6-4a96-820c-9f58e2709ff1" + ], + "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:20200612T050322Z:21db56bc-c387-4e16-8c1c-8c390058c3fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:03: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "96a61c90-895f-4c6f-9b2d-b6921c199cef" + ], + "x-ms-correlation-request-id": [ + "87cfe37b-37f3-407a-af96-3e90a085dc73" + ], + "x-ms-arm-service-request-id": [ + "c714c244-cb03-42dc-bd15-c8b53c4c9d30" + ], + "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:20200612T050332Z:87cfe37b-37f3-407a-af96-3e90a085dc73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:03: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c6e30ead-3be3-405c-874f-d03857d228d0" + ], + "x-ms-correlation-request-id": [ + "5a4f9034-91a9-481c-a0a4-664ae46b1722" + ], + "x-ms-arm-service-request-id": [ + "76d20964-6dff-4334-997d-5414b1507168" + ], + "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:20200612T050342Z:5a4f9034-91a9-481c-a0a4-664ae46b1722" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:03: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0e66602a-0b80-4524-8b58-c93448910998" + ], + "x-ms-correlation-request-id": [ + "ba8a5fe3-7ad0-4f44-8eeb-6538a9a7f09e" + ], + "x-ms-arm-service-request-id": [ + "749c128c-266d-48d2-b9d5-7973e0502578" + ], + "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:20200612T050352Z:ba8a5fe3-7ad0-4f44-8eeb-6538a9a7f09e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:03: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "552ed886-1f0e-43c7-b359-fd753275f221" + ], + "x-ms-correlation-request-id": [ + "f647eabb-6aef-4116-9fa8-a4e24d53f8c2" + ], + "x-ms-arm-service-request-id": [ + "eb5f8e95-5f1b-46f3-a0eb-bd501173688f" + ], + "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:20200612T050402Z:f647eabb-6aef-4116-9fa8-a4e24d53f8c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:04: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "92c317d5-35a6-4fe0-a065-6be79b7ec1d3" + ], + "x-ms-correlation-request-id": [ + "c637a47a-921a-4cde-bfde-65b40e3d8770" + ], + "x-ms-arm-service-request-id": [ + "6be2961e-059d-40ce-89cc-321baa1d81e6" + ], + "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:20200612T050412Z:c637a47a-921a-4cde-bfde-65b40e3d8770" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:04: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/17c9d070-9835-455a-b048-f1a452dd11ea?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzE3YzlkMDcwLTk4MzUtNDU1YS1iMDQ4LWYxYTQ1MmRkMTFlYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "efc6c140-10d8-4c91-b585-b16caec9b981" + ], + "x-ms-correlation-request-id": [ + "311b017f-d6ef-415a-992a-7bb3bf44f23f" + ], + "x-ms-arm-service-request-id": [ + "09550009-0efc-4894-8267-35c6bdc36e95" + ], + "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:20200612T050422Z:311b017f-d6ef-415a-992a-7bb3bf44f23f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:04:21 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/bc6f8b59-43c7-41d0-84bd-f20b77caf2bc?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2JjNmY4YjU5LTQzYzctNDFkMC04NGJkLWYyMGI3N2NhZjJiYz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f1fed606-181e-4da9-a34f-1892994217b6" + ], + "x-ms-correlation-request-id": [ + "8ab8fd84-047a-40cd-b386-4c99ea410b88" + ], + "x-ms-arm-service-request-id": [ + "9cca26e0-1e87-4676-82a2-5f758371cb53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T050433Z:8ab8fd84-047a-40cd-b386-4c99ea410b88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:04: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/bc6f8b59-43c7-41d0-84bd-f20b77caf2bc?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2JjNmY4YjU5LTQzYzctNDFkMC04NGJkLWYyMGI3N2NhZjJiYz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "152e9b51-74b4-4731-9a1f-bc169e3fad59" + ], + "x-ms-correlation-request-id": [ + "69d098f6-b867-4759-a733-6041f669337d" + ], + "x-ms-arm-service-request-id": [ + "c9adc1c3-f2ef-4c56-91ca-dc86b130c448" + ], + "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:20200612T050444Z:69d098f6-b867-4759-a733-6041f669337d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:04:43 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourceGroups/ps9411/providers/Microsoft.Network/applicationGateways/ps6233?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlR3JvdXBzL3BzOTQxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczYyMzM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d04cf5d8-859a-46f4-a7e4-35c816ba590d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operationResults/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1e1ceac7-0ead-4de7-987f-0e583625eb04" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "3cf2ff1e-cdd8-4646-856b-f5f2aa9ff38b" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "ddbceb22-24e9-4d26-8d47-a75fe3f7cb79" + ], + "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:20200612T050444Z:3cf2ff1e-cdd8-4646-856b-f5f2aa9ff38b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:04:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "60e48fdd-2ef0-41bf-b18e-d7e390c5f3be" + ], + "x-ms-correlation-request-id": [ + "308651af-c307-4e59-9003-5e11445d4024" + ], + "x-ms-arm-service-request-id": [ + "30dca589-d538-4cc7-bc88-d168d921b9b5" + ], + "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:20200612T050454Z:308651af-c307-4e59-9003-5e11445d4024" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:04: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "50951e88-bb6d-48c1-84ee-227dd29fabb2" + ], + "x-ms-correlation-request-id": [ + "c68fe9e1-81ea-4fd5-b208-f12327814d93" + ], + "x-ms-arm-service-request-id": [ + "2c542605-7b29-4aac-9b52-3cbe98b39bef" + ], + "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:20200612T050504Z:c68fe9e1-81ea-4fd5-b208-f12327814d93" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:05: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c6083b86-6eff-4571-bce1-6b34821ff764" + ], + "x-ms-correlation-request-id": [ + "ed4434f0-56c9-4a70-8392-13f12b25ce67" + ], + "x-ms-arm-service-request-id": [ + "263d43bd-b3af-4572-aac7-ff7d2f003be9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T050515Z:ed4434f0-56c9-4a70-8392-13f12b25ce67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:05: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "83205c64-0ccf-40b9-9f0e-19c2012fac4a" + ], + "x-ms-correlation-request-id": [ + "698855bb-376b-4009-b695-06f184291a31" + ], + "x-ms-arm-service-request-id": [ + "5949e6c4-8773-478a-9fcb-309f01196e56" + ], + "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:20200612T050525Z:698855bb-376b-4009-b695-06f184291a31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:05: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ff612091-ffeb-4207-b3d8-d4c89f12ff42" + ], + "x-ms-correlation-request-id": [ + "d01a9545-08a7-477f-9927-ce4a346817e1" + ], + "x-ms-arm-service-request-id": [ + "463854c4-43c5-42ee-a2a2-0fd900178044" + ], + "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:20200612T050535Z:d01a9545-08a7-477f-9927-ce4a346817e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:05: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "51dc856b-138b-4ab4-a871-d7f56cbd05f5" + ], + "x-ms-correlation-request-id": [ + "532ef836-2d65-4958-9e7e-d33fd51204ca" + ], + "x-ms-arm-service-request-id": [ + "be07d6bb-6ab0-4cf9-af2d-f0456c145353" + ], + "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:20200612T050545Z:532ef836-2d65-4958-9e7e-d33fd51204ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:05: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9e0deeb0-1abb-4325-8d87-154be035da69" + ], + "x-ms-correlation-request-id": [ + "851ebb87-91dd-4bf0-a1d0-422a01e5dc53" + ], + "x-ms-arm-service-request-id": [ + "8cf8d9c6-4a53-4a25-9205-4d69a9f3a5f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T050555Z:851ebb87-91dd-4bf0-a1d0-422a01e5dc53" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:05: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9028a3aa-6216-4242-9784-0291e44ddccc" + ], + "x-ms-correlation-request-id": [ + "9f4ea92f-863c-4f38-a57a-447e163657af" + ], + "x-ms-arm-service-request-id": [ + "dba7dc14-5c15-4590-b192-f14bc207588c" + ], + "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:20200612T050605Z:9f4ea92f-863c-4f38-a57a-447e163657af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:06: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "04241bf7-ec08-4242-be94-297a8b93bf45" + ], + "x-ms-correlation-request-id": [ + "44f7b078-ccb3-482d-b6a4-0a59f572444b" + ], + "x-ms-arm-service-request-id": [ + "ed68294b-9fa9-4cfb-bbd4-fc1dc8ff9255" + ], + "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:20200612T050615Z:44f7b078-ccb3-482d-b6a4-0a59f572444b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:06: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "019ab165-6081-401e-91ad-e6b49d500e70" + ], + "x-ms-correlation-request-id": [ + "5b175b45-f2eb-438d-92ab-19ae23dd69aa" + ], + "x-ms-arm-service-request-id": [ + "b3767019-81e6-4a96-ab0a-5c2c13fe0890" + ], + "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:20200612T050625Z:5b175b45-f2eb-438d-92ab-19ae23dd69aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:06: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a2f93fd4-b9c3-445c-82b1-3599a3ea07fa" + ], + "x-ms-correlation-request-id": [ + "56143cf6-e9d6-4058-b54b-0c22c7697083" + ], + "x-ms-arm-service-request-id": [ + "af68913b-c216-4dff-b8ed-6971daf0e19e" + ], + "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:20200612T050635Z:56143cf6-e9d6-4058-b54b-0c22c7697083" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:06: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bf903220-042b-4c53-8e9a-b11c558fe0fd" + ], + "x-ms-correlation-request-id": [ + "0a71340d-1b69-4ef6-b71e-cd6bd8222595" + ], + "x-ms-arm-service-request-id": [ + "64e46e4d-b2b9-4ec9-bd7d-535d53952311" + ], + "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:20200612T050645Z:0a71340d-1b69-4ef6-b71e-cd6bd8222595" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:06: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "27bccd41-0634-4cd7-9bee-436e4542a309" + ], + "x-ms-correlation-request-id": [ + "332959a3-7fb6-431e-8567-becef820b231" + ], + "x-ms-arm-service-request-id": [ + "ee166818-8a07-4317-b23e-9eaad750aadd" + ], + "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:20200612T050655Z:332959a3-7fb6-431e-8567-becef820b231" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:06: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d35cb1b4-1d63-414e-bc80-0a07e6e76622" + ], + "x-ms-correlation-request-id": [ + "88880e1b-e5ee-427c-9196-7cda8ba3171f" + ], + "x-ms-arm-service-request-id": [ + "8bcd03e0-c774-4cf0-bd9e-dde3934fe877" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T050705Z:88880e1b-e5ee-427c-9196-7cda8ba3171f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:07:05 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "986b26b5-733a-4162-9ad1-32763bffd657" + ], + "x-ms-correlation-request-id": [ + "a2c06c64-7678-4f60-9730-a504d7dc6b88" + ], + "x-ms-arm-service-request-id": [ + "8063ef44-d4a1-453b-a902-8285c09987bb" + ], + "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:20200612T050715Z:a2c06c64-7678-4f60-9730-a504d7dc6b88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:07:15 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "be38e44b-55ac-47e2-90a9-221a6e2c873c" + ], + "x-ms-correlation-request-id": [ + "bc60978f-17ae-4fee-a315-d0df12bc3c4a" + ], + "x-ms-arm-service-request-id": [ + "3db29576-898b-41e4-83e5-220aef6d4cb2" + ], + "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:20200612T050725Z:bc60978f-17ae-4fee-a315-d0df12bc3c4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:07:25 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6abef348-cd1c-4f40-adba-d9179986ef5e" + ], + "x-ms-correlation-request-id": [ + "c49838d3-c672-4c19-ba11-60fd247a4197" + ], + "x-ms-arm-service-request-id": [ + "2e2578c2-5b6a-410e-8756-dc9ed72eb554" + ], + "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:20200612T050735Z:c49838d3-c672-4c19-ba11-60fd247a4197" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:07:35 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "66177c75-d126-4ea1-b210-76c3833cf4e5" + ], + "x-ms-correlation-request-id": [ + "9bcc9a06-09c9-46a1-a429-b7e105907041" + ], + "x-ms-arm-service-request-id": [ + "a793b3f5-89bf-4cc8-873b-5afee5771fa9" + ], + "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:20200612T050745Z:9bcc9a06-09c9-46a1-a429-b7e105907041" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:07:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "87efa8c7-cf38-4ca3-b515-ffeaf7585a05" + ], + "x-ms-correlation-request-id": [ + "162fde49-bbcb-4947-bb8f-61087f675118" + ], + "x-ms-arm-service-request-id": [ + "ad692932-f2fe-4267-9b5a-e397ac6cdeec" + ], + "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:20200612T050755Z:162fde49-bbcb-4947-bb8f-61087f675118" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:07:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2fda169d-ece8-4331-9464-89975d642ade" + ], + "x-ms-correlation-request-id": [ + "8bed6253-7a93-4a2c-9170-8ddeb0aff314" + ], + "x-ms-arm-service-request-id": [ + "446bc644-ba3b-413e-aab3-187aabd2ef11" + ], + "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:20200612T050806Z:8bed6253-7a93-4a2c-9170-8ddeb0aff314" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:08:05 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cd05351b-958e-481e-9e67-350c0ae80065" + ], + "x-ms-correlation-request-id": [ + "a6d35eeb-c033-4bae-809f-d3f6991d6e9e" + ], + "x-ms-arm-service-request-id": [ + "809ca25c-f950-4dc0-b5b8-f64e35a44a8a" + ], + "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:20200612T050816Z:a6d35eeb-c033-4bae-809f-d3f6991d6e9e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:08:15 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "453c69eb-c9de-4242-a3f1-49107df93831" + ], + "x-ms-correlation-request-id": [ + "96910c35-e475-4503-97b4-f0d4c3a65502" + ], + "x-ms-arm-service-request-id": [ + "bfda93ce-16c5-4a2d-b788-bfd430c3b5eb" + ], + "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:20200612T050826Z:96910c35-e475-4503-97b4-f0d4c3a65502" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:08:25 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4e23b791-d1f6-40f1-a4d3-1f1acdd7ea5c" + ], + "x-ms-correlation-request-id": [ + "1937ad44-1b9d-47ea-8324-56fccd7d07a1" + ], + "x-ms-arm-service-request-id": [ + "d0790c30-c76e-4725-b553-6cc6bbcbb007" + ], + "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:20200612T050836Z:1937ad44-1b9d-47ea-8324-56fccd7d07a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:08:35 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4244ba18-5b1e-40c4-be7d-932981498b07" + ], + "x-ms-correlation-request-id": [ + "c7a98aa0-d5ed-4670-846c-7a8d01e9e524" + ], + "x-ms-arm-service-request-id": [ + "ae37b70b-a317-436f-8516-c980db85e189" + ], + "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:20200612T050846Z:c7a98aa0-d5ed-4670-846c-7a8d01e9e524" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:08:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2f828c03-287c-42e1-8632-fa1cacad698b" + ], + "x-ms-correlation-request-id": [ + "bac1c300-03bb-4c8c-9ef0-471084f3a5d1" + ], + "x-ms-arm-service-request-id": [ + "111aae8d-4979-4ca5-a819-cd5476faf768" + ], + "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:20200612T050856Z:bac1c300-03bb-4c8c-9ef0-471084f3a5d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:08:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bd5c9312-804e-42b2-ae91-249539ecc396" + ], + "x-ms-correlation-request-id": [ + "b89c8443-4716-4874-b64b-54554e37396b" + ], + "x-ms-arm-service-request-id": [ + "4b22965b-0c37-45da-aae8-393ae1eeaaba" + ], + "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:20200612T050906Z:b89c8443-4716-4874-b64b-54554e37396b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:09: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "467ae50c-6c6c-4e05-b409-d7f974058993" + ], + "x-ms-correlation-request-id": [ + "5186add5-968f-4459-9d42-a6faca79a846" + ], + "x-ms-arm-service-request-id": [ + "20ce44a2-f762-475c-8eba-85b6e1e12dbb" + ], + "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:20200612T050916Z:5186add5-968f-4459-9d42-a6faca79a846" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:09:16 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6e7ae2ba-00d5-49d5-83e6-22ada462ca2a" + ], + "x-ms-correlation-request-id": [ + "01ed7c7b-996c-44b1-b970-5bfeb03e86e2" + ], + "x-ms-arm-service-request-id": [ + "e9af4bd8-8afd-45f0-a60f-a217a5773062" + ], + "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:20200612T050926Z:01ed7c7b-996c-44b1-b970-5bfeb03e86e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:09:26 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4d30e58a-677b-4e33-b114-95e4c70237a4" + ], + "x-ms-correlation-request-id": [ + "337a061c-2fc2-4e0c-88e3-5d6be61c9cfa" + ], + "x-ms-arm-service-request-id": [ + "99faf2cd-84fc-40ab-904b-549ee09a4a32" + ], + "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:20200612T050936Z:337a061c-2fc2-4e0c-88e3-5d6be61c9cfa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:09: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "192adc7c-5e2e-453a-b91f-984b8bb42804" + ], + "x-ms-correlation-request-id": [ + "a1d74f94-268b-4995-aede-0be2e67963a0" + ], + "x-ms-arm-service-request-id": [ + "93304def-b878-4986-87d9-2fd9648b0aa6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T050946Z:a1d74f94-268b-4995-aede-0be2e67963a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:09: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "afb27c10-3208-4300-8f34-96da0499f503" + ], + "x-ms-correlation-request-id": [ + "9eab4deb-df90-4355-9462-a7defc97b601" + ], + "x-ms-arm-service-request-id": [ + "e61c9782-17a5-49b4-989a-bf64c1b75933" + ], + "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:20200612T050956Z:9eab4deb-df90-4355-9462-a7defc97b601" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:09: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9b8b9cdc-c7e2-4dc6-94f2-00de22ecb158" + ], + "x-ms-correlation-request-id": [ + "7ea181e9-2448-4bb6-b6ce-4acdf95b6e76" + ], + "x-ms-arm-service-request-id": [ + "7364ffcd-c98e-4d8d-906c-e5cc8020c75f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T051006Z:7ea181e9-2448-4bb6-b6ce-4acdf95b6e76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:10: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "498d12dc-b51e-47af-a454-8fb689586c19" + ], + "x-ms-correlation-request-id": [ + "6b026d44-d2dc-4143-9840-8eef75b1a8a3" + ], + "x-ms-arm-service-request-id": [ + "56827e2b-18cf-4845-a8cd-4cea1f3c7529" + ], + "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:20200612T051016Z:6b026d44-d2dc-4143-9840-8eef75b1a8a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:10:16 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "76ba7611-a07a-4a97-98b7-84bf5b0b6ffc" + ], + "x-ms-correlation-request-id": [ + "ff522928-684b-4dda-a5d7-857832ea2326" + ], + "x-ms-arm-service-request-id": [ + "544c7941-e5a9-4723-a3a2-6a451e76e15f" + ], + "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:20200612T051027Z:ff522928-684b-4dda-a5d7-857832ea2326" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:10:26 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f0a8fb83-03ae-4695-bcc0-2d22210fef58" + ], + "x-ms-correlation-request-id": [ + "37c8337d-3c84-4cf9-a4ed-5c23402f34a0" + ], + "x-ms-arm-service-request-id": [ + "517c0a8c-827b-445b-8865-58e22dc55b21" + ], + "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:20200612T051037Z:37c8337d-3c84-4cf9-a4ed-5c23402f34a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:10: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c704d4f6-f6b1-41c9-930a-c7a62de9dd80" + ], + "x-ms-correlation-request-id": [ + "1176847c-cb39-49a6-bd33-f8ac9a702d89" + ], + "x-ms-arm-service-request-id": [ + "9c511674-eb48-4000-8474-e5f1088b94ab" + ], + "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:20200612T051047Z:1176847c-cb39-49a6-bd33-f8ac9a702d89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:10: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "470d182f-9cb9-485d-9877-63f9cc4da55b" + ], + "x-ms-correlation-request-id": [ + "4ce229d5-1ee1-4261-80b7-5e643a85818d" + ], + "x-ms-arm-service-request-id": [ + "bc520eab-5a0c-4028-9c9e-955f9463539b" + ], + "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:20200612T051057Z:4ce229d5-1ee1-4261-80b7-5e643a85818d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:10: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "75b17f1c-0cd9-417f-b927-9ec1134fff23" + ], + "x-ms-correlation-request-id": [ + "d65b773a-fea2-4d36-9872-2cce2d813b0a" + ], + "x-ms-arm-service-request-id": [ + "01677263-4d89-46ad-8cfc-590884377248" + ], + "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:20200612T051107Z:d65b773a-fea2-4d36-9872-2cce2d813b0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:11: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "08d98e8a-934a-4a7f-a5c2-04df4d8a2d19" + ], + "x-ms-correlation-request-id": [ + "241d83a6-10ca-427f-8f24-8f4d8ff79414" + ], + "x-ms-arm-service-request-id": [ + "492fb755-4969-4afb-98da-77df1d7b281f" + ], + "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:20200612T051117Z:241d83a6-10ca-427f-8f24-8f4d8ff79414" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:11: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "37f4f3bd-d066-4ddb-b168-0e38ec77b990" + ], + "x-ms-correlation-request-id": [ + "0f8df561-a03b-4ddd-b6a6-2ab509ff4937" + ], + "x-ms-arm-service-request-id": [ + "e252c98f-9507-4a3c-8eb4-9c6613d42f72" + ], + "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:20200612T051127Z:0f8df561-a03b-4ddd-b6a6-2ab509ff4937" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:11: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "791b3201-b6a2-4fec-b693-83ef33af8aea" + ], + "x-ms-correlation-request-id": [ + "2aef9d8b-efe1-4cfd-ab47-88089e52f26f" + ], + "x-ms-arm-service-request-id": [ + "5f56f70c-10e4-4cde-972f-3b1a4855bff3" + ], + "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:20200612T051137Z:2aef9d8b-efe1-4cfd-ab47-88089e52f26f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:11: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e19d2d99-88c8-4e82-ad0d-4352960d5f9f" + ], + "x-ms-correlation-request-id": [ + "88e0abaf-d00b-4a48-b514-d13484a3045d" + ], + "x-ms-arm-service-request-id": [ + "c0be7204-1df9-446c-9dbf-57533d5086c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T051147Z:88e0abaf-d00b-4a48-b514-d13484a3045d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:11: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "10c34849-6950-4a70-8aad-dce9c088287d" + ], + "x-ms-correlation-request-id": [ + "f4ae4016-d380-4b8a-a0c6-9f7dca36b8d6" + ], + "x-ms-arm-service-request-id": [ + "c692afdb-c101-4beb-9598-0cc3f1dd2a5c" + ], + "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:20200612T051157Z:f4ae4016-d380-4b8a-a0c6-9f7dca36b8d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:11: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c33e2377-6c06-4b84-b178-b047898f75d8" + ], + "x-ms-correlation-request-id": [ + "9943f531-79c4-49f4-8889-d622076992b8" + ], + "x-ms-arm-service-request-id": [ + "3bb1efd8-65d7-416d-a7c0-b80054aab70c" + ], + "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:20200612T051207Z:9943f531-79c4-49f4-8889-d622076992b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:12: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dd86bc4c-f017-4ae9-a3e2-bb208e9d1f36" + ], + "x-ms-correlation-request-id": [ + "af24e581-8fa5-4f86-a7aa-872ea5aa12fa" + ], + "x-ms-arm-service-request-id": [ + "db823ea9-ad67-4e73-b44c-e10b7c1d3e90" + ], + "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:20200612T051217Z:af24e581-8fa5-4f86-a7aa-872ea5aa12fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:12: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "60554350-d1bc-4855-95c2-ce16af201bc7" + ], + "x-ms-correlation-request-id": [ + "af0b57e5-19e6-4c93-ac3c-1ecd4783fb4c" + ], + "x-ms-arm-service-request-id": [ + "60d79668-c6c0-4df7-8aeb-1e806e8a4f0e" + ], + "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:20200612T051227Z:af0b57e5-19e6-4c93-ac3c-1ecd4783fb4c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:12: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8d4de6d2-81ca-4532-8964-ef4668875242" + ], + "x-ms-correlation-request-id": [ + "adf4172c-25dc-4602-9063-e213acc5ce51" + ], + "x-ms-arm-service-request-id": [ + "9ffb811f-a8f5-45ee-bb56-ae7193518415" + ], + "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:20200612T051238Z:adf4172c-25dc-4602-9063-e213acc5ce51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:12: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f075bed6-c231-4d35-abc9-b047d06159e2" + ], + "x-ms-correlation-request-id": [ + "823963e1-832c-4b7d-82fd-0f4870d0d1c5" + ], + "x-ms-arm-service-request-id": [ + "40821a6c-9aa8-42e8-9c48-9bcd798fcd3b" + ], + "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:20200612T051248Z:823963e1-832c-4b7d-82fd-0f4870d0d1c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:12: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fe141ae1-3769-4315-a84f-585a42ddf75a" + ], + "x-ms-correlation-request-id": [ + "c740c79a-6c17-4694-be00-17f6cd04e3e7" + ], + "x-ms-arm-service-request-id": [ + "63529212-e738-4148-a137-26e87d25c178" + ], + "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:20200612T051258Z:c740c79a-6c17-4694-be00-17f6cd04e3e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:12: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a16d3234-c764-4ad0-8b6c-4141a803f7af" + ], + "x-ms-correlation-request-id": [ + "78c6c7a4-ed51-45df-a4df-682510f2a900" + ], + "x-ms-arm-service-request-id": [ + "45f265f0-b749-480c-bda4-f0c7e0917a60" + ], + "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:20200612T051308Z:78c6c7a4-ed51-45df-a4df-682510f2a900" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:13: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "12e898b4-5f8f-4159-a3d4-63d59d1e12cb" + ], + "x-ms-correlation-request-id": [ + "2353affd-7e3f-42fc-a89b-290a18919812" + ], + "x-ms-arm-service-request-id": [ + "df08cbe3-9005-4546-83f9-4caaf5b9ce3f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T051318Z:2353affd-7e3f-42fc-a89b-290a18919812" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:13: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "495e4ba6-30a3-42af-a17b-362a870c6f13" + ], + "x-ms-correlation-request-id": [ + "9cd6e694-8bd9-4a97-b3d6-595921bceb77" + ], + "x-ms-arm-service-request-id": [ + "4965b597-4086-4a38-827f-5ead13c66684" + ], + "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:20200612T051328Z:9cd6e694-8bd9-4a97-b3d6-595921bceb77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:13: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "66bd4266-7799-4328-b9ff-c9009340dff8" + ], + "x-ms-correlation-request-id": [ + "45747739-2363-435b-b7fb-e2bb9c4dc577" + ], + "x-ms-arm-service-request-id": [ + "e67cbe12-3ba3-4437-a52f-ef7ade7f36d0" + ], + "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:20200612T051338Z:45747739-2363-435b-b7fb-e2bb9c4dc577" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:13: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7e41ace6-4ab6-449a-8dd6-c836ec52770e" + ], + "x-ms-correlation-request-id": [ + "bb38e636-db07-4300-86ca-b0a3db32912d" + ], + "x-ms-arm-service-request-id": [ + "4c3e66e8-61c9-4ef8-b0b9-1d7c60e27601" + ], + "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:20200612T051348Z:bb38e636-db07-4300-86ca-b0a3db32912d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:13: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e179fa01-8ab5-4b0e-b3a2-865932387527" + ], + "x-ms-correlation-request-id": [ + "8a5dcea8-b862-4299-9f67-1fb5aeefedf2" + ], + "x-ms-arm-service-request-id": [ + "82a24905-3acf-4602-9301-049eeb21c396" + ], + "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:20200612T051358Z:8a5dcea8-b862-4299-9f67-1fb5aeefedf2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:13: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9ba26517-9325-46c4-9d54-5eced869c212" + ], + "x-ms-correlation-request-id": [ + "56d3b48c-eb1d-48ec-b2ff-fd7771852134" + ], + "x-ms-arm-service-request-id": [ + "52c598dd-f93b-4820-8a0e-5b71687f5520" + ], + "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:20200612T051408Z:56d3b48c-eb1d-48ec-b2ff-fd7771852134" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:14: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "97fdce47-5653-4bff-8806-b2432adcbe53" + ], + "x-ms-correlation-request-id": [ + "6d9b1837-3222-4f2a-8de8-cc6fac5fe409" + ], + "x-ms-arm-service-request-id": [ + "ace90c43-3c8c-4b52-b77d-721002109d52" + ], + "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:20200612T051418Z:6d9b1837-3222-4f2a-8de8-cc6fac5fe409" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:14: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bda959a6-81b0-4297-8d8c-4f3a021e6714" + ], + "x-ms-correlation-request-id": [ + "fbd3715e-2c20-4f94-b98d-edf6c98cd08b" + ], + "x-ms-arm-service-request-id": [ + "0b2d3e51-6700-4182-ad68-8c18c0e73215" + ], + "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:20200612T051428Z:fbd3715e-2c20-4f94-b98d-edf6c98cd08b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:14: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "eea75d73-59eb-40e6-821c-613a1e59128e" + ], + "x-ms-correlation-request-id": [ + "0c51b37b-6d1b-47a2-b31a-6c27391babd7" + ], + "x-ms-arm-service-request-id": [ + "f22ff066-5768-4082-bce9-e482df9c8e28" + ], + "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:20200612T051438Z:0c51b37b-6d1b-47a2-b31a-6c27391babd7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:14: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2c9033c3-ee64-4e1a-947d-f04ea90aa008" + ], + "x-ms-correlation-request-id": [ + "0ccf112c-bc40-4659-9dce-ae9a985837fd" + ], + "x-ms-arm-service-request-id": [ + "63387673-e1d2-43e1-9a2d-c943de692462" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T051448Z:0ccf112c-bc40-4659-9dce-ae9a985837fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:14: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c2e738c0-e2c2-49f8-b80b-f23d7b32d865" + ], + "x-ms-correlation-request-id": [ + "ae3c0452-6eb3-4070-a1fc-2fb5cf77c61b" + ], + "x-ms-arm-service-request-id": [ + "5a62bd62-573e-469b-b964-1fee0621b3bf" + ], + "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:20200612T051458Z:ae3c0452-6eb3-4070-a1fc-2fb5cf77c61b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:14: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "88e75bc8-f320-47ed-a49b-fd43fd347da0" + ], + "x-ms-correlation-request-id": [ + "417e86b8-8ad6-4c5f-88ca-f563ee73d8bc" + ], + "x-ms-arm-service-request-id": [ + "ed77acae-3ca4-4ef5-8731-1c970f0daba9" + ], + "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:20200612T051508Z:417e86b8-8ad6-4c5f-88ca-f563ee73d8bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:15: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "52c1cf01-15b5-4360-a12c-18b58e7d533d" + ], + "x-ms-correlation-request-id": [ + "01bd007e-f8df-40ac-9fae-5df62bfbc0ba" + ], + "x-ms-arm-service-request-id": [ + "f1715c0b-f599-4765-adcd-0272e1058ebe" + ], + "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:20200612T051519Z:01bd007e-f8df-40ac-9fae-5df62bfbc0ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:15: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d1562df4-2e9d-4644-bbf3-e7145429f379" + ], + "x-ms-correlation-request-id": [ + "12171275-a630-4279-8951-a66ffbf08aef" + ], + "x-ms-arm-service-request-id": [ + "19a8a6e1-055e-459c-8483-44cf4c2c4f8c" + ], + "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:20200612T051529Z:12171275-a630-4279-8951-a66ffbf08aef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:15: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cbc505cd-b28b-4227-938e-47a0fbeeffe9" + ], + "x-ms-correlation-request-id": [ + "c8599567-2a03-44a0-88e9-2b62b9485825" + ], + "x-ms-arm-service-request-id": [ + "97534dd5-45d3-473f-a492-5bf1809cc4ba" + ], + "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:20200612T051539Z:c8599567-2a03-44a0-88e9-2b62b9485825" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:15: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "81f3cabd-2417-4f43-9e29-4211d9921cb6" + ], + "x-ms-correlation-request-id": [ + "490a4e8d-211b-47ab-bcd3-52b975770772" + ], + "x-ms-arm-service-request-id": [ + "6fea88aa-ba46-4b2a-a882-0b14c1ed8686" + ], + "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:20200612T051549Z:490a4e8d-211b-47ab-bcd3-52b975770772" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:15: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "341a13fe-de6f-4b55-ac13-2c80d7d8cc27" + ], + "x-ms-correlation-request-id": [ + "c028725f-459e-463c-8220-f1cbde73eddb" + ], + "x-ms-arm-service-request-id": [ + "41e83e16-a49d-416d-854d-fb0ab10c7594" + ], + "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:20200612T051559Z:c028725f-459e-463c-8220-f1cbde73eddb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:15: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c013dc47-0386-4d29-9d24-0861d381b77e" + ], + "x-ms-correlation-request-id": [ + "502c6271-c272-4c53-b469-4a8afd118211" + ], + "x-ms-arm-service-request-id": [ + "f88bfea9-0575-422e-a0b9-f9a1d92f8d2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T051609Z:502c6271-c272-4c53-b469-4a8afd118211" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:16: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c3598383-f66f-47e2-bdb9-b1821855c8ec" + ], + "x-ms-correlation-request-id": [ + "f319748f-ae03-4de4-aac0-8f5564e53cd3" + ], + "x-ms-arm-service-request-id": [ + "2fcf7934-9c8c-472a-98c4-84f22a1a61cb" + ], + "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:20200612T051619Z:f319748f-ae03-4de4-aac0-8f5564e53cd3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:16: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f9942929-4f7f-4e0d-b93c-ce6632276a19" + ], + "x-ms-correlation-request-id": [ + "3e621fe7-2033-44cb-b155-a4cf6120c8d1" + ], + "x-ms-arm-service-request-id": [ + "b6ddd8ea-5a33-457e-a675-967c31ba67e1" + ], + "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:20200612T051629Z:3e621fe7-2033-44cb-b155-a4cf6120c8d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:16: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "50f17808-d331-4542-a019-6d6f37dc250b" + ], + "x-ms-correlation-request-id": [ + "aac4f072-963c-432d-8d25-8201318fbb0d" + ], + "x-ms-arm-service-request-id": [ + "ae7e33fd-3267-468b-ba70-1b919b3974bc" + ], + "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:20200612T051639Z:aac4f072-963c-432d-8d25-8201318fbb0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:16:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "98ac744e-7088-4f45-b0c9-d69754455813" + ], + "x-ms-correlation-request-id": [ + "d937517a-329c-47e8-a452-3c372358c9ea" + ], + "x-ms-arm-service-request-id": [ + "d56b9184-10b0-4d56-8357-2094992649ee" + ], + "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:20200612T051649Z:d937517a-329c-47e8-a452-3c372358c9ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:16: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7b1b18e6-423d-49f0-925c-16df9df3080a" + ], + "x-ms-correlation-request-id": [ + "c13edcd6-d1e0-4c02-8e60-34526015649c" + ], + "x-ms-arm-service-request-id": [ + "8553dd04-31f1-4e9f-b605-8e307c7c5860" + ], + "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:20200612T051659Z:c13edcd6-d1e0-4c02-8e60-34526015649c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:16: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fd0e626f-9a58-4af4-8ec6-0c4746a1a7f1" + ], + "x-ms-correlation-request-id": [ + "afd328c2-9c13-4c4c-b665-6d4b25360955" + ], + "x-ms-arm-service-request-id": [ + "cad47eb1-9691-4834-84e0-ba96e0ad0aba" + ], + "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:20200612T051709Z:afd328c2-9c13-4c4c-b665-6d4b25360955" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:17: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d2396ad5-273b-43cb-b82e-6c12a010826a" + ], + "x-ms-correlation-request-id": [ + "9739ddb9-e753-4c07-afd6-51d6b48f8843" + ], + "x-ms-arm-service-request-id": [ + "b4255266-aa89-48e3-b4c6-87587839003c" + ], + "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:20200612T051719Z:9739ddb9-e753-4c07-afd6-51d6b48f8843" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:17: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7ff3be53-312a-44ee-8ba9-03a583d36761" + ], + "x-ms-correlation-request-id": [ + "1e5e6269-673d-4aff-9913-0c0f687043d7" + ], + "x-ms-arm-service-request-id": [ + "1f8cb2fa-e8d9-4d2f-a339-45ffe8dfc851" + ], + "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:20200612T051729Z:1e5e6269-673d-4aff-9913-0c0f687043d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:17: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/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fc8aad05-2c4d-4ce4-9fd7-001a57d218fd" + ], + "x-ms-correlation-request-id": [ + "b9f7965f-cf30-4457-bc24-e37b6b47b521" + ], + "x-ms-arm-service-request-id": [ + "29698114-fac9-426f-a439-80fa5b5b1f33" + ], + "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:20200612T051739Z:b9f7965f-cf30-4457-bc24-e37b6b47b521" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:17:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4011b2f5-8928-41e5-9cf4-f25e7db9a5e3" + ], + "x-ms-correlation-request-id": [ + "cb8f9a9b-1237-41f8-b1b8-7f68372edd00" + ], + "x-ms-arm-service-request-id": [ + "9ad8ef60-c375-4e98-bc3f-fe6440ac7a92" + ], + "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:20200612T051749Z:cb8f9a9b-1237-41f8-b1b8-7f68372edd00" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:17:49 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operationResults/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzFlMWNlYWM3LTBlYWQtNGRlNy05ODdmLTBlNTgzNjI1ZWIwND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operationResults/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01" + ], + "x-ms-request-id": [ + "1e1ceac7-0ead-4de7-987f-0e583625eb04" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/providers/Microsoft.Network/locations/westus2/operations/1e1ceac7-0ead-4de7-987f-0e583625eb04?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "3cf2ff1e-cdd8-4646-856b-f5f2aa9ff38b" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "ddbceb22-24e9-4d26-8d47-a75fe3f7cb79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T051749Z:c42ecad6-a662-4412-80de-da90c3198c0b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:17:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/resourcegroups/ps9411?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L3Jlc291cmNlZ3JvdXBzL3BzOTQxMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed074e56-b89e-4a9a-ab39-96ce86b5a742" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0MTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "638679cc-646e-4879-8a50-e3406072bc03" + ], + "x-ms-correlation-request-id": [ + "638679cc-646e-4879-8a50-e3406072bc03" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T051750Z:638679cc-646e-4879-8a50-e3406072bc03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:17:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0MTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME1URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0MTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "843d76ce-e31f-4884-a1c5-b364bc2532e5" + ], + "x-ms-correlation-request-id": [ + "843d76ce-e31f-4884-a1c5-b364bc2532e5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T051805Z:843d76ce-e31f-4884-a1c5-b364bc2532e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:18:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0MTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME1URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0MTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "042742ab-9c43-441f-a920-d2e152f4508e" + ], + "x-ms-correlation-request-id": [ + "042742ab-9c43-441f-a920-d2e152f4508e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T051820Z:042742ab-9c43-441f-a920-d2e152f4508e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:18:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0MTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME1URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0MTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "7d25ef06-43eb-4a91-9184-f8a23b046d76" + ], + "x-ms-correlation-request-id": [ + "7d25ef06-43eb-4a91-9184-f8a23b046d76" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T051835Z:7d25ef06-43eb-4a91-9184-f8a23b046d76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:18:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0MTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME1URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0MTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "7b93ca09-41c3-4e39-8fdd-1e20ef8a1afc" + ], + "x-ms-correlation-request-id": [ + "7b93ca09-41c3-4e39-8fdd-1e20ef8a1afc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T051850Z:7b93ca09-41c3-4e39-8fdd-1e20ef8a1afc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:18:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0MTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME1URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0MTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "6b8429e6-0342-4038-a6fa-ff9c00f94eaf" + ], + "x-ms-correlation-request-id": [ + "6b8429e6-0342-4038-a6fa-ff9c00f94eaf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T051906Z:6b8429e6-0342-4038-a6fa-ff9c00f94eaf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:19:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0MTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME1URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0MTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "41ed20a6-cb10-4201-a797-fc2f11d170c5" + ], + "x-ms-correlation-request-id": [ + "41ed20a6-cb10-4201-a797-fc2f11d170c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T051921Z:41ed20a6-cb10-4201-a797-fc2f11d170c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:19:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0MTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME1URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "21ac64ee-0da9-44fe-a66d-6f0894c94be6" + ], + "x-ms-correlation-request-id": [ + "21ac64ee-0da9-44fe-a66d-6f0894c94be6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T051936Z:21ac64ee-0da9-44fe-a66d-6f0894c94be6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:19:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/668f1741-ef48-4132-bf98-28b3a3d3f257/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk0MTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjY4ZjE3NDEtZWY0OC00MTMyLWJmOTgtMjhiM2EzZDNmMjU3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprME1URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "3117d085-e83b-4379-b053-00a1b40935f7" + ], + "x-ms-correlation-request-id": [ + "3117d085-e83b-4379-b053-00a1b40935f7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200612T051936Z:3117d085-e83b-4379-b053-00a1b40935f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Jun 2020 05:19:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-ApplicationGatewayWithPrivateLinkConfiguration": [ + "ps9411", + "ps6233", + "ps5379", + "ps7503", + "ps7833", + "ps1906", + "ps2068", + "ps4647", + "ps9969", + "ps879", + "ps3755", + "ps2825", + "ps7213", + "ps9749", + "ps8825", + "ps6356", + "ps8536", + "ps553", + "ps5171", + "ps1116" + ] + }, + "Variables": { + "SubscriptionId": "668f1741-ef48-4132-bf98-28b3a3d3f257" + } +} \ No newline at end of file diff --git a/src/Network/Network/ApplicationGateway/FrontendIPConfiguration/AzureApplicationGatewayFrontendIPConfigBase.cs b/src/Network/Network/ApplicationGateway/FrontendIPConfiguration/AzureApplicationGatewayFrontendIPConfigBase.cs index f99602f4f907..481243512930 100644 --- a/src/Network/Network/ApplicationGateway/FrontendIPConfiguration/AzureApplicationGatewayFrontendIPConfigBase.cs +++ b/src/Network/Network/ApplicationGateway/FrontendIPConfiguration/AzureApplicationGatewayFrontendIPConfigBase.cs @@ -54,6 +54,18 @@ public class AzureApplicationGatewayFrontendIPConfigBase : NetworkBaseCmdlet HelpMessage = "PublicIPAddress")] public PSPublicIpAddress PublicIPAddress { get; set; } + [Parameter( + Mandatory = false, + ParameterSetName = "SetByResource", + HelpMessage = "PrivateLinkConfiguration")] + public PSApplicationGatewayPrivateLinkConfiguration PrivateLinkConfiguration { get; set; } + + [Parameter( + Mandatory = false, + ParameterSetName = "SetByResourceId", + HelpMessage = "PrivateLinkConfigurationId")] + public string PrivateLinkConfigurationId { get; set; } + public override void ExecuteCmdlet() { base.ExecuteCmdlet(); @@ -69,6 +81,11 @@ public override void ExecuteCmdlet() { this.PublicIPAddressId = this.PublicIPAddress.Id; } + + if (this.PrivateLinkConfiguration != null) + { + this.PrivateLinkConfigurationId = this.PrivateLinkConfiguration.Id; + } } } @@ -99,6 +116,12 @@ public PSApplicationGatewayFrontendIPConfiguration NewObject() frontendIPConfig.PublicIPAddress.Id = this.PublicIPAddressId; } + if (!string.IsNullOrEmpty(this.PrivateLinkConfigurationId)) + { + frontendIPConfig.PrivateLinkConfiguration = new PSResourceId(); + frontendIPConfig.PrivateLinkConfiguration.Id = this.PrivateLinkConfigurationId; + } + frontendIPConfig.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( this.NetworkClient.NetworkManagementClient.SubscriptionId, Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayFrontendIPConfigName, diff --git a/src/Network/Network/ApplicationGateway/NewAzureApplicationGatewayCommand.cs b/src/Network/Network/ApplicationGateway/NewAzureApplicationGatewayCommand.cs index ba771761fc8a..74b793cec1c2 100644 --- a/src/Network/Network/ApplicationGateway/NewAzureApplicationGatewayCommand.cs +++ b/src/Network/Network/ApplicationGateway/NewAzureApplicationGatewayCommand.cs @@ -229,6 +229,9 @@ public class NewAzureApplicationGatewayCommand : ApplicationGatewayBaseCmdlet [ValidateNotNullOrEmpty] public PSApplicationGatewayCustomError[] CustomErrorConfiguration { get; set; } + [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The list of privateLink Configuration")] + public PSApplicationGatewayPrivateLinkConfiguration[] PrivateLinkConfiguration { get; set; } + public override void ExecuteCmdlet() { base.ExecuteCmdlet(); @@ -355,6 +358,11 @@ private PSApplicationGateway CreateApplicationGateway() applicationGateway.AutoscaleConfiguration = this.AutoscaleConfiguration; } + if (this.PrivateLinkConfiguration != null) + { + applicationGateway.PrivateLinkConfigurations = this.PrivateLinkConfiguration?.ToList(); + } + if (this.EnableHttp2.IsPresent) { applicationGateway.EnableHttp2 = true; diff --git a/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/AddApplicationGatewayPrivateLinkConfigurationCommand.cs b/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/AddApplicationGatewayPrivateLinkConfigurationCommand.cs new file mode 100644 index 000000000000..ba658ac139fd --- /dev/null +++ b/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/AddApplicationGatewayPrivateLinkConfigurationCommand.cs @@ -0,0 +1,50 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; +using Microsoft.Azure.Commands.Network.Models; +using System.Management.Automation; +using System.Linq; +using System; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Add, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayPrivateLinkConfiguration"), OutputType(typeof(PSApplicationGateway))] + public class AddAzureApplicationGatewayPrivateLinkConfigurationCommand : AzureApplicationGatewayPrivateLinkConfigurationBase + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var privateLinkConfiguration = this.ApplicationGateway.PrivateLinkConfigurations.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (privateLinkConfiguration != null) + { + throw new ArgumentException("PrivateLinkConfiguration with the specified name already exists"); + } + + privateLinkConfiguration = base.NewObject(); + this.ApplicationGateway.PrivateLinkConfigurations.Add(privateLinkConfiguration); + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/AzureApplicationGatewayPrivateLinkConfigurationBase.cs b/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/AzureApplicationGatewayPrivateLinkConfigurationBase.cs new file mode 100644 index 000000000000..c70e8657073b --- /dev/null +++ b/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/AzureApplicationGatewayPrivateLinkConfigurationBase.cs @@ -0,0 +1,56 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + public class AzureApplicationGatewayPrivateLinkConfigurationBase : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the privateLink configuration")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The list of ipConfiguration")] + [ValidateNotNullOrEmpty] + public PSApplicationGatewayPrivateLinkIpConfiguration[] IpConfiguration { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + } + + public PSApplicationGatewayPrivateLinkConfiguration NewObject() + { + var privateLinkConfiguration = new PSApplicationGatewayPrivateLinkConfiguration(); + + privateLinkConfiguration.Name = this.Name; + privateLinkConfiguration.IpConfigurations = this.IpConfiguration?.ToList(); + + privateLinkConfiguration.Id = ApplicationGatewayChildResourceHelper.GetResourceNotSetId( + this.NetworkClient.NetworkManagementClient.SubscriptionId, + Microsoft.Azure.Commands.Network.Properties.Resources.ApplicationGatewayPrivateLinkConfigurationName, + this.Name); + + return privateLinkConfiguration; + } + } +} diff --git a/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/GetAzureApplicationGatewayPrivateLinkConfigurationCommand.cs b/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/GetAzureApplicationGatewayPrivateLinkConfigurationCommand.cs new file mode 100644 index 000000000000..7c4fc525e7c2 --- /dev/null +++ b/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/GetAzureApplicationGatewayPrivateLinkConfigurationCommand.cs @@ -0,0 +1,51 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Network.Models; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayPrivateLinkConfiguration"), OutputType(typeof(PSApplicationGatewayPrivateLinkConfiguration))] + public class GetAzureApplicationGatewayPrivateLinkConfigurationCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The name of the application gateway privateLink configuration")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + public override void ExecuteCmdlet() + { + if (!string.IsNullOrEmpty(this.Name)) + { + var privateLinkConfiguration = + this.ApplicationGateway.PrivateLinkConfigurations.First(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + WriteObject(privateLinkConfiguration); + } + else + { + var privateLinkConfigurations = this.ApplicationGateway.PrivateLinkConfigurations; + WriteObject(privateLinkConfigurations, true); + } + } + } +} diff --git a/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/NewAzureApplicationGatewayPrivateLinkConfigurationCommand.cs b/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/NewAzureApplicationGatewayPrivateLinkConfigurationCommand.cs new file mode 100644 index 000000000000..dbb8afad49d0 --- /dev/null +++ b/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/NewAzureApplicationGatewayPrivateLinkConfigurationCommand.cs @@ -0,0 +1,30 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; +using Microsoft.Azure.Commands.Network.Models; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayPrivateLinkConfiguration"), OutputType(typeof(PSApplicationGatewayPrivateLinkConfiguration))] + public class NewAzureApplicationGatewayPrivateLinkConfigurationCommand : AzureApplicationGatewayPrivateLinkConfigurationBase + { + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + WriteObject(this.NewObject()); + } + } +} diff --git a/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand.cs b/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand.cs new file mode 100644 index 000000000000..25da17026843 --- /dev/null +++ b/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand.cs @@ -0,0 +1,93 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Network.Models; +using System.Management.Automation; +using MNM = Microsoft.Azure.Management.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayPrivateLinkIpConfiguration"), OutputType(typeof(PSApplicationGatewayPrivateLinkIpConfiguration))] + public class NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of the IpConfiguration")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Subnet")] + public PSSubnet Subnet { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The ip version of the ip configuration")] + [ValidateSet( + MNM.IPVersion.IPv4, + IgnoreCase = true)] + public string PrivateIpAddressVersion { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The private ip address of the ipConfiguration " + + "if static allocation is desired.")] + public string PrivateIpAddress { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Indicate the ip configuration is primary.")] + public SwitchParameter Primary { get; set; } + + public override void Execute() + { + base.Execute(); + + var ipconfig = new PSApplicationGatewayPrivateLinkIpConfiguration + { + Name = Name + }; + + if (this.Subnet != null) + { + ipconfig.Subnet = new PSResourceId(); + ipconfig.Subnet.Id = this.Subnet.Id; + } + + if (!string.IsNullOrEmpty(this.PrivateIpAddress)) + { + ipconfig.PrivateIPAddress = this.PrivateIpAddress; + ipconfig.PrivateIPAllocationMethod = MNM.IPAllocationMethod.Static; + } + else + { + ipconfig.PrivateIPAllocationMethod = MNM.IPAllocationMethod.Dynamic; + } + + if (!string.IsNullOrEmpty(this.PrivateIpAddressVersion)) + { + ipconfig.PrivateIPAddressVersion = this.PrivateIpAddressVersion; + } + else + { + ipconfig.PrivateIPAddressVersion = MNM.IPVersion.IPv4; + } + + ipconfig.Primary = this.Primary.IsPresent; + + WriteObject(ipconfig); + } + } +} diff --git a/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand.cs b/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand.cs new file mode 100644 index 000000000000..4a899e316d6c --- /dev/null +++ b/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand.cs @@ -0,0 +1,50 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using Microsoft.Azure.Commands.Network.Models; +using System.Management.Automation; +using System.Linq; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayPrivateLinkConfiguration"), OutputType(typeof(PSApplicationGateway))] + public class RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand : NetworkBaseCmdlet + { + [Parameter(Mandatory = true, HelpMessage = "The name of the application gateway privateLink configuration")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var privateLinkConfiguration = this.ApplicationGateway.PrivateLinkConfigurations.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (privateLinkConfiguration != null) + { + this.ApplicationGateway.PrivateLinkConfigurations.Remove(privateLinkConfiguration); + } + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/SetAzureApplicationGatewayPrivateLinkConfigurationCommand.cs b/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/SetAzureApplicationGatewayPrivateLinkConfigurationCommand.cs new file mode 100644 index 000000000000..52bd3036512c --- /dev/null +++ b/src/Network/Network/ApplicationGateway/PrivateLinkConfiguration/SetAzureApplicationGatewayPrivateLinkConfigurationCommand.cs @@ -0,0 +1,52 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Set, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayPrivateLinkConfiguration"), OutputType(typeof(PSApplicationGateway))] + public class SetAzureApplicationGatewayPrivateLinkConfigurationCommand : AzureApplicationGatewayPrivateLinkConfigurationBase + { + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The applicationGateway")] + public PSApplicationGateway ApplicationGateway { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + var oldPrivateLinkConfiguration = this.ApplicationGateway.PrivateLinkConfigurations.SingleOrDefault + (resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (oldPrivateLinkConfiguration == null) + { + throw new ArgumentException("PrivateLink Configuration with the specified name does not exist"); + } + + var newPrivateLinkConfiguration = base.NewObject(); + + this.ApplicationGateway.PrivateLinkConfigurations.Remove(oldPrivateLinkConfiguration); + this.ApplicationGateway.PrivateLinkConfigurations.Add(newPrivateLinkConfiguration); + + WriteObject(this.ApplicationGateway); + } + } +} diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index a2d09aba2099..035631a4e674 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -202,7 +202,13 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate', 'Get-AzApplicationGatewayUrlPathMapConfig', 'New-AzApplicationGatewayUrlPathMapConfig', 'Remove-AzApplicationGatewayUrlPathMapConfig', - 'Set-AzApplicationGatewayUrlPathMapConfig', + 'Set-AzApplicationGatewayUrlPathMapConfig', + 'New-AzApplicationGatewayPrivateLinkConfiguration', + 'Add-AzApplicationGatewayPrivateLinkConfiguration', + 'Set-AzApplicationGatewayPrivateLinkConfiguration', + 'Get-AzApplicationGatewayPrivateLinkConfiguration', + 'Remove-AzApplicationGatewayPrivateLinkConfiguration', + 'New-AzApplicationGatewayPrivateLinkIpConfiguration', 'Add-AzExpressRouteCircuitAuthorization', 'Get-AzExpressRouteCircuitAuthorization', 'New-AzExpressRouteCircuitAuthorization', diff --git a/src/Network/Network/Common/NetworkResourceManagerProfile.cs b/src/Network/Network/Common/NetworkResourceManagerProfile.cs index 68036f6a82fa..2fdf217e1a79 100644 --- a/src/Network/Network/Common/NetworkResourceManagerProfile.cs +++ b/src/Network/Network/Common/NetworkResourceManagerProfile.cs @@ -975,6 +975,9 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); // MNM to CNM cfg.CreateMap(); @@ -1038,6 +1041,9 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); // Application Security Groups // CNM to MNM diff --git a/src/Network/Network/Models/PSApplicationGateway.cs b/src/Network/Network/Models/PSApplicationGateway.cs index 9f03d7717548..948469179756 100644 --- a/src/Network/Network/Models/PSApplicationGateway.cs +++ b/src/Network/Network/Models/PSApplicationGateway.cs @@ -63,6 +63,10 @@ public class PSApplicationGateway : PSTopLevelResource public List CustomErrorConfigurations { get; set; } + public List PrivateLinkConfigurations { get; set; } + + public List PrivateEndpointConnections { get; set; } + [Ps1Xml(Target = ViewControl.Table)] public bool? EnableHttp2 { get; set; } @@ -172,5 +176,17 @@ public string FirewallPolicyText { get { return JsonConvert.SerializeObject(FirewallPolicy, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } } + + [JsonIgnore] + public string PrivateLinkConfigurationsText + { + get { return JsonConvert.SerializeObject(PrivateLinkConfigurations, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } + + [JsonIgnore] + public string PrivateLinkEndpointConnectionsText + { + get { return JsonConvert.SerializeObject(PrivateEndpointConnections, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } } } diff --git a/src/Network/Network/Models/PSApplicationGatewayFrontendIPConfiguration.cs b/src/Network/Network/Models/PSApplicationGatewayFrontendIPConfiguration.cs index b842f6917336..11949672b0c0 100644 --- a/src/Network/Network/Models/PSApplicationGatewayFrontendIPConfiguration.cs +++ b/src/Network/Network/Models/PSApplicationGatewayFrontendIPConfiguration.cs @@ -29,6 +29,7 @@ public class PSApplicationGatewayFrontendIPConfiguration : PSChildResource [Ps1Xml(Target = ViewControl.Table)] public string ProvisioningState { get; set; } public string Type { get; set; } + public PSResourceId PrivateLinkConfiguration { get; set; } [JsonIgnore] public string SubnetText @@ -41,5 +42,11 @@ public string PublicIpAddressText { get { return JsonConvert.SerializeObject(PublicIPAddress, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } } + + [JsonIgnore] + public string PrivateLinkConfigurationText + { + get { return JsonConvert.SerializeObject(PrivateLinkConfiguration, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } } } diff --git a/src/Network/Network/Models/PSApplicationGatewayPrivateEndpointConnection.cs b/src/Network/Network/Models/PSApplicationGatewayPrivateEndpointConnection.cs new file mode 100644 index 000000000000..632435a2a01a --- /dev/null +++ b/src/Network/Network/Models/PSApplicationGatewayPrivateEndpointConnection.cs @@ -0,0 +1,57 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// +// +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. +// +// For documentation on code generator please visit +// https://aka.ms/nrp-code-generation +// Please contact wanrpdev@microsoft.com if you need to make changes to this file. +// + +using Microsoft.Azure.Management.Network.Models; +using Microsoft.WindowsAzure.Commands.Common.Attributes; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.Network.Models +{ + public partial class PSApplicationGatewayPrivateEndpointConnection : PSChildResource + { + [Ps1Xml(Label = "PrivateEndpoint", Target = ViewControl.Table, ScriptBlock = "$_.PrivateEndpoint.Name")] + public PSPrivateEndpoint PrivateEndpoint { get; set; } + + public PSPrivateLinkServiceConnectionState PrivateLinkServiceConnectionState { get; set; } + + [Ps1Xml(Target = ViewControl.Table)] + public string ProvisioningState { get; set; } + + public string LinkIdentifier { get; set; } + + [JsonIgnore] + public string PrivateEndpointText + { + get { return JsonConvert.SerializeObject(PrivateEndpoint, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } + + [JsonIgnore] + public string PrivateLinkServiceConnectionStateText + { + get { return JsonConvert.SerializeObject(PrivateLinkServiceConnectionState, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } + } +} \ No newline at end of file diff --git a/src/Network/Network/Models/PSApplicationGatewayPrivateLinkConfiguration.cs b/src/Network/Network/Models/PSApplicationGatewayPrivateLinkConfiguration.cs new file mode 100644 index 000000000000..4b91305168d8 --- /dev/null +++ b/src/Network/Network/Models/PSApplicationGatewayPrivateLinkConfiguration.cs @@ -0,0 +1,37 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using Microsoft.WindowsAzure.Commands.Common.Attributes; +using Newtonsoft.Json; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSApplicationGatewayPrivateLinkConfiguration : PSChildResource + { + public List IpConfigurations { get; set; } + + [Ps1Xml(Target = ViewControl.Table)] + public string ProvisioningState { get; set; } + + public string Type { get; set; } + + [JsonIgnore] + public string IpConfigurationsText + { + get { return JsonConvert.SerializeObject(IpConfigurations, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } + } +} diff --git a/src/Network/Network/Models/PSApplicationGatewayPrivateLinkIpConfiguration.cs b/src/Network/Network/Models/PSApplicationGatewayPrivateLinkIpConfiguration.cs new file mode 100644 index 000000000000..545499562ef7 --- /dev/null +++ b/src/Network/Network/Models/PSApplicationGatewayPrivateLinkIpConfiguration.cs @@ -0,0 +1,46 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using Microsoft.WindowsAzure.Commands.Common.Attributes; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSApplicationGatewayPrivateLinkIpConfiguration : PSChildResource + { + [Ps1Xml(Target = ViewControl.Table)] + public bool? Primary { get; set; } + + [Ps1Xml(Target = ViewControl.Table)] + public string PrivateIPAllocationMethod { get; set; } + + [Ps1Xml(Target = ViewControl.Table)] + public string PrivateIPAddress { get; set; } + + [Ps1Xml(Target = ViewControl.Table)] + public string ProvisioningState { get; set; } + + public PSResourceId Subnet { get; set; } + + [Ps1Xml(Target = ViewControl.Table)] + public string PrivateIPAddressVersion { get; set; } + + [JsonIgnore] + public string SubnetText + { + get { return JsonConvert.SerializeObject(Subnet, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } + } +} diff --git a/src/Network/Network/Properties/Resources.Designer.cs b/src/Network/Network/Properties/Resources.Designer.cs index 960dc061b631..f3c7ffdbdda5 100644 --- a/src/Network/Network/Properties/Resources.Designer.cs +++ b/src/Network/Network/Properties/Resources.Designer.cs @@ -159,6 +159,33 @@ internal static string ApplicationGatewayNameNotSet { } } + /// + /// Looks up a localized string similar to privateEndpointConnections. + /// + internal static string ApplicationGatewayPrivateEndpointConnectionName { + get { + return ResourceManager.GetString("ApplicationGatewayPrivateEndpointConnectionName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to privateLinkConfigurations. + /// + internal static string ApplicationGatewayPrivateLinkConfigurationName { + get { + return ResourceManager.GetString("ApplicationGatewayPrivateLinkConfigurationName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ipConfigurations. + /// + internal static string ApplicationGatewayPrivateLinkIpConfigurationName { + get { + return ResourceManager.GetString("ApplicationGatewayPrivateLinkIpConfigurationName", resourceCulture); + } + } + /// /// Looks up a localized string similar to probes. /// @@ -528,6 +555,24 @@ internal static string EndpointWilthFilterTypeMustHaveFilterItem { } } + /// + /// Looks up a localized string similar to Circuit Connection with Name '{0}' is already added.. + /// + internal static string ExpressRouteCircuitConnectionAlreadyAdded { + get { + return ResourceManager.GetString("ExpressRouteCircuitConnectionAlreadyAdded", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Circuit Connection with Name '{0}' was not added to the private peering.. + /// + internal static string ExpressRouteCircuitConnectionNotFound { + get { + return ResourceManager.GetString("ExpressRouteCircuitConnectionNotFound", resourceCulture); + } + } + /// /// Looks up a localized string similar to The ExpressRouteConnection {0} could not be found.. /// @@ -554,41 +599,16 @@ internal static string ExpressRouteGatewayRequiredToCreateExpressRouteConnection return ResourceManager.GetString("ExpressRouteGatewayRequiredToCreateExpressRouteConnection", resourceCulture); } } - + /// - /// Looks up a localized string similar to A valid ExpressRouteGateway reference is required to create an ExpressRouteConnection.. + /// Looks up a localized string similar to Private Peering needs to be configured on the Express Route Circuit.. /// - internal static string ExpressRoutePrivatePeeringNotFound - { - get - { + internal static string ExpressRoutePrivatePeeringNotFound { + get { return ResourceManager.GetString("ExpressRoutePrivatePeeringNotFound", resourceCulture); } } - - /// - /// Looks up a localized string similar to A valid ExpressRouteGateway reference is required to create an ExpressRouteConnection.. - /// - internal static string ExpressRouteCircuitConnectionNotFound - { - get - { - return ResourceManager.GetString("ExpressRouteCircuitConnectionNotFound", resourceCulture); - } - } - - - /// - /// Looks up a localized string similar to A valid ExpressRouteGateway reference is required to create an ExpressRouteConnection.. - /// - internal static string ExpressRouteCircuitConnectionAlreadyAdded - { - get - { - return ResourceManager.GetString("ExpressRouteCircuitConnectionAlreadyAdded", resourceCulture); - } - } - + /// /// Looks up a localized string similar to The hub virtual network connection to modify could not be found.. /// diff --git a/src/Network/Network/Properties/Resources.resx b/src/Network/Network/Properties/Resources.resx index 1075e5165964..f2bc0f8c383c 100644 --- a/src/Network/Network/Properties/Resources.resx +++ b/src/Network/Network/Properties/Resources.resx @@ -668,4 +668,13 @@ Circuit Connection with Name '{0}' is already added. + + privateEndpointConnections + + + privateLinkConfigurations + + + ipConfigurations + \ No newline at end of file diff --git a/src/Network/Network/help/Add-AzApplicationGatewayFrontendIPConfig.md b/src/Network/Network/help/Add-AzApplicationGatewayFrontendIPConfig.md index 4ab4bb8cf9ba..e96edcf295b7 100644 --- a/src/Network/Network/help/Add-AzApplicationGatewayFrontendIPConfig.md +++ b/src/Network/Network/help/Add-AzApplicationGatewayFrontendIPConfig.md @@ -17,13 +17,14 @@ Adds a front-end IP configuration to an application gateway. ``` Add-AzApplicationGatewayFrontendIPConfig -ApplicationGateway -Name [-PrivateIPAddress ] [-SubnetId ] [-PublicIPAddressId ] - [-DefaultProfile ] [] + [-PrivateLinkConfigurationId ] [-DefaultProfile ] [] ``` ### SetByResource ``` Add-AzApplicationGatewayFrontendIPConfig -ApplicationGateway -Name [-PrivateIPAddress ] [-Subnet ] [-PublicIPAddress ] + [-PrivateLinkConfiguration ] [-DefaultProfile ] [] ``` @@ -80,7 +81,7 @@ The fourth command adds a front-end IP configuration named FrontendIP02 using $S Specifies the application gateway to which this cmdlet adds a front-end IP configuration. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGateway +Type: PSApplicationGateway Parameter Sets: (All) Aliases: @@ -95,7 +96,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with azure. ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -110,7 +111,7 @@ Accept wildcard characters: False Specifies the name of the front-end IP configuration to add. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -126,7 +127,7 @@ Specifies the private IP address to add as a front-end IP for the application ga If specified, this IP is statically allocated from the subnet. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -137,11 +138,41 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -PrivateLinkConfiguration +PrivateLinkConfiguration + +```yaml +Type: PSApplicationGatewayPrivateLinkConfiguration +Parameter Sets: SetByResource +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrivateLinkConfigurationId +PrivateLinkConfigurationId + +```yaml +Type: String +Parameter Sets: SetByResourceId +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -PublicIPAddress Specifies the public IP address which this cmdlet adds as a front-end IP address for the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress +Type: PSPublicIpAddress Parameter Sets: SetByResource Aliases: @@ -156,7 +187,7 @@ Accept wildcard characters: False Specifies the ID of the public IP address which this cmdlet adds as a front-end IP address for the application gateway. ```yaml -Type: System.String +Type: String Parameter Sets: SetByResourceId Aliases: @@ -174,7 +205,7 @@ If the *PrivateIPAddress* parameter is specified, it should belong to this subne If *PrivateIPAddress* is not specified, one of the IP addresses from this subnet is dynamically picked up as the front-end IP address of the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSSubnet +Type: PSSubnet Parameter Sets: SetByResource Aliases: @@ -192,7 +223,7 @@ If the *PrivateIPAddress* parameter is specified, it should belong to this subne Otherwise, one of the IP from this subnet is dynamically picked up as the front-end IP of the application gateway. ```yaml -Type: System.String +Type: String Parameter Sets: SetByResourceId Aliases: @@ -204,7 +235,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/Network/Network/help/Add-AzApplicationGatewayPrivateLinkConfiguration.md b/src/Network/Network/help/Add-AzApplicationGatewayPrivateLinkConfiguration.md new file mode 100644 index 000000000000..e5aa7c95e75d --- /dev/null +++ b/src/Network/Network/help/Add-AzApplicationGatewayPrivateLinkConfiguration.md @@ -0,0 +1,122 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/add-azapplicationgatewayprivatelinkconfiguration +schema: 2.0.0 +--- + +# Add-AzApplicationGatewayPrivateLinkConfiguration + +## SYNOPSIS +Adds a private link configuration to an application gateway. + +## SYNTAX + +``` +Add-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway -Name + -IpConfiguration [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The **Add-AzApplicationGatewayPrivateLinkConfiguration** cmdlet adds a private link configuration to an application gateway. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $PrivateLinkIpConfiguration = New-AzApplicationGatewayPrivateLinkConfiguration -Name "ipConfig01" -Subnet $subnet -Primary +PS C:\> $AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Add-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway $AppGw -Name "privateLinkConfig01" -IpConfiguration $PrivateLinkIpConfiguration +``` + +The first command creates a privateLinkIpConfiguration and stores it in the $PrivateLinkIpConfiguration variable. +The second command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01, and stores it in the $AppGw variable. +The third command adds the private link configuration named privateLinkConfig01, for the gateway in $AppGw + +## PARAMETERS + +### -ApplicationGateway +The applicationGateway + +```yaml +Type: PSApplicationGateway +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IpConfiguration +The list of ipConfiguration + +```yaml +Type: PSApplicationGatewayPrivateLinkIpConfiguration[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +The name of the privateLink configuration + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + +### Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[] + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + +## NOTES + +## RELATED LINKS + +[New-AzApplicationGatewayPrivateLinkConfiguration](./New-AzApplicationGatewayPrivateLinkConfiguration.md) + +[Get-AzApplicationGatewayPrivateLinkConfiguration](./Get-AzApplicationGatewayPrivateLinkConfiguration.md) + +[Remove-AzApplicationGatewayPrivateLinkConfiguration](./Remove-AzApplicationGatewayPrivateLinkConfiguration.md) + +[Set-AzApplicationGatewayPrivateLinkConfiguration](./Set-AzApplicationGatewayPrivateLinkConfiguration.md) \ No newline at end of file diff --git a/src/Network/Network/help/Get-AzApplicationGatewayFrontendIPConfig.md b/src/Network/Network/help/Get-AzApplicationGatewayFrontendIPConfig.md index d020c85d8b94..2900faf4c92f 100644 --- a/src/Network/Network/help/Get-AzApplicationGatewayFrontendIPConfig.md +++ b/src/Network/Network/help/Get-AzApplicationGatewayFrontendIPConfig.md @@ -45,7 +45,7 @@ The first command gets an application gateway named ApplicationGateway01 from th Specifies the application gateway object that contains the front-end IP configuration. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGateway +Type: PSApplicationGateway Parameter Sets: (All) Aliases: @@ -60,7 +60,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with azure. ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -75,7 +75,7 @@ Accept wildcard characters: False Specifies the name of the front-end IP configuration that this cmdlet gets. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: diff --git a/src/Network/Network/help/Get-AzApplicationGatewayPrivateLinkConfiguration.md b/src/Network/Network/help/Get-AzApplicationGatewayPrivateLinkConfiguration.md new file mode 100644 index 000000000000..de241a3fca0b --- /dev/null +++ b/src/Network/Network/help/Get-AzApplicationGatewayPrivateLinkConfiguration.md @@ -0,0 +1,111 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-azapplicationgatewayprivatelinkconfiguration +schema: 2.0.0 +--- + +# Get-AzApplicationGatewayPrivateLinkConfiguration + +## SYNOPSIS +Gets the private link configuration of an application gateway. + +## SYNTAX + +``` +Get-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway [-Name ] + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzApplicationGatewayPrivateLinkConfiguration** cmdlet gets the private link configuration of an application gateway. + +## EXAMPLES + +### Example 1 : Get a specified private link configuration +```powershell +PS C:\>$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $PrivateLinkConfiguration = Get-AzApplicationGatewayPrivateLinkConfiguration -Name "privateLinkConfig01" -ApplicationGateway $AppGw +``` + +The first command gets an application gateway named ApplicationGateway01 from the resource group named ResourceGroup01, and stores it in the $AppGw variable. +The second command gets the private link configuration named privateLinkConfig01 from $AppGw and stores it in the $PrivateLinkConfiguration variable. + +### Example 2 : Get a list of private link configuration +```powershell +PS C:\>$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $PrivateLinkConfigurations = Get-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway $AppGw +``` + +The first command gets an application gateway named ApplicationGateway01 from the resource group named ResourceGroup01, and stores it in the $AppGw variable. +The second command gets all the private link configurations from $AppGw and stores it in the $PrivateLinkConfigurations variable. + +## PARAMETERS + +### -ApplicationGateway +The applicationGateway + +```yaml +Type: PSApplicationGateway +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the application gateway privateLink configuration + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration + +## NOTES + +## RELATED LINKS + +[New-AzApplicationGatewayPrivateLinkConfiguration](./New-AzApplicationGatewayPrivateLinkConfiguration.md) + +[Add-AzApplicationGatewayPrivateLinkConfiguration](./Add-AzApplicationGatewayPrivateLinkConfiguration.md) + +[Remove-AzApplicationGatewayPrivateLinkConfiguration](./Remove-AzApplicationGatewayPrivateLinkConfiguration.md) + +[Set-AzApplicationGatewayPrivateLinkConfiguration](./Set-AzApplicationGatewayPrivateLinkConfiguration.md) \ No newline at end of file diff --git a/src/Network/Network/help/New-AzApplicationGateway.md b/src/Network/Network/help/New-AzApplicationGateway.md index 6ca888e48a17..bbbc750d2e44 100644 --- a/src/Network/Network/help/New-AzApplicationGateway.md +++ b/src/Network/Network/help/New-AzApplicationGateway.md @@ -33,6 +33,7 @@ New-AzApplicationGateway -Name -ResourceGroupName -Location ] [-EnableHttp2] [-EnableFIPS] [-ForceFirewallPolicyAssociation] [-Zone ] [-Tag ] [-UserAssignedIdentityId ] [-Force] [-AsJob] [-CustomErrorConfiguration ] + [-PrivateLinkConfiguration ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -56,6 +57,7 @@ New-AzApplicationGateway -Name -ResourceGroupName -Location ] [-AutoscaleConfiguration ] [-EnableHttp2] [-EnableFIPS] [-ForceFirewallPolicyAssociation] [-Zone ] [-Tag ] [-Force] [-AsJob] [-CustomErrorConfiguration ] + [-PrivateLinkConfiguration ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -79,8 +81,9 @@ New-AzApplicationGateway -Name -ResourceGroupName -Location ] [-AutoscaleConfiguration ] [-EnableHttp2] [-EnableFIPS] [-ForceFirewallPolicyAssociation] [-Zone ] [-Tag ] [-Force] [-AsJob] - [-CustomErrorConfiguration ] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-CustomErrorConfiguration ] + [-PrivateLinkConfiguration ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### IdentityByIdentityObject @@ -103,6 +106,7 @@ New-AzApplicationGateway -Name -ResourceGroupName -Location ] [-EnableHttp2] [-EnableFIPS] [-ForceFirewallPolicyAssociation] [-Zone ] [-Tag ] -Identity [-Force] [-AsJob] [-CustomErrorConfiguration ] + [-PrivateLinkConfiguration ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -192,7 +196,7 @@ PS C:\> $Gateway = New-AzApplicationGateway -Name "AppGateway01" -ResourceGroupN Run cmdlet in the background ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: @@ -207,7 +211,7 @@ Accept wildcard characters: False Specifies authentication certificates for the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[] +Type: PSApplicationGatewayAuthenticationCertificate[] Parameter Sets: (All) Aliases: @@ -222,7 +226,7 @@ Accept wildcard characters: False Autoscale Configuration ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration +Type: PSApplicationGatewayAutoscaleConfiguration Parameter Sets: (All) Aliases: @@ -237,7 +241,7 @@ Accept wildcard characters: False Specifies the list of back-end address pools for the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[] +Type: PSApplicationGatewayBackendAddressPool[] Parameter Sets: (All) Aliases: @@ -252,7 +256,7 @@ Accept wildcard characters: False Specifies the list of back-end HTTP settings for the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[] +Type: PSApplicationGatewayBackendHttpSettings[] Parameter Sets: (All) Aliases: @@ -267,7 +271,7 @@ Accept wildcard characters: False Customer error of an application gateway ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[] +Type: PSApplicationGatewayCustomError[] Parameter Sets: (All) Aliases: @@ -282,7 +286,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with azure. ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -297,7 +301,7 @@ Accept wildcard characters: False Whether FIPS is enabled. ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: @@ -312,7 +316,7 @@ Accept wildcard characters: False Whether HTTP2 is enabled. ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: @@ -327,7 +331,7 @@ Accept wildcard characters: False Firewall configuration ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy +Type: PSApplicationGatewayWebApplicationFirewallPolicy Parameter Sets: SetByResource Aliases: @@ -342,7 +346,7 @@ Accept wildcard characters: False FirewallPolicyId ```yaml -Type: System.String +Type: String Parameter Sets: SetByResourceId Aliases: @@ -357,7 +361,7 @@ Accept wildcard characters: False Forces the command to run without asking for user confirmation. ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: @@ -372,7 +376,7 @@ Accept wildcard characters: False Whether Force firewallPolicy association is enabled. ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: @@ -387,7 +391,7 @@ Accept wildcard characters: False Specifies a list of front-end IP configurations for the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[] +Type: PSApplicationGatewayFrontendIPConfiguration[] Parameter Sets: (All) Aliases: @@ -402,7 +406,7 @@ Accept wildcard characters: False Specifies a list of front-end ports for the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[] +Type: PSApplicationGatewayFrontendPort[] Parameter Sets: (All) Aliases: @@ -417,7 +421,7 @@ Accept wildcard characters: False Specifies a list of IP configurations for the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[] +Type: PSApplicationGatewayIPConfiguration[] Parameter Sets: (All) Aliases: @@ -432,7 +436,7 @@ Accept wildcard characters: False Specifies a list of HTTP listeners for the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[] +Type: PSApplicationGatewayHttpListener[] Parameter Sets: (All) Aliases: @@ -447,7 +451,7 @@ Accept wildcard characters: False Application Gateway Identity to be assigned to Application Gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity +Type: PSManagedServiceIdentity Parameter Sets: IdentityByIdentityObject Aliases: @@ -462,7 +466,7 @@ Accept wildcard characters: False Specifies the region in which to create the application gateway. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -477,7 +481,7 @@ Accept wildcard characters: False Specifies the name of application gateway. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: ResourceName @@ -488,11 +492,26 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -PrivateLinkConfiguration +The list of privateLink Configuration + +```yaml +Type: PSApplicationGatewayPrivateLinkConfiguration[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Probes Specifies probes for the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[] +Type: PSApplicationGatewayProbe[] Parameter Sets: (All) Aliases: @@ -507,7 +526,7 @@ Accept wildcard characters: False The list of redirect configuration ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[] +Type: PSApplicationGatewayRedirectConfiguration[] Parameter Sets: (All) Aliases: @@ -522,7 +541,7 @@ Accept wildcard characters: False Specifies a list of request routing rules for the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[] +Type: PSApplicationGatewayRequestRoutingRule[] Parameter Sets: (All) Aliases: @@ -537,7 +556,7 @@ Accept wildcard characters: False Specifies the name of the resource group in which to create the application gateway. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -552,7 +571,7 @@ Accept wildcard characters: False The list of RewriteRuleSet ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[] +Type: PSApplicationGatewayRewriteRuleSet[] Parameter Sets: (All) Aliases: @@ -567,7 +586,7 @@ Accept wildcard characters: False Specifies the stock keeping unit (SKU) of the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku +Type: PSApplicationGatewaySku Parameter Sets: (All) Aliases: @@ -582,7 +601,7 @@ Accept wildcard characters: False Specifies the list of Secure Sockets Layer (SSL) certificates for the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[] +Type: PSApplicationGatewaySslCertificate[] Parameter Sets: (All) Aliases: @@ -597,7 +616,7 @@ Accept wildcard characters: False Specifies an SSL policy for the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy +Type: PSApplicationGatewaySslPolicy Parameter Sets: (All) Aliases: @@ -613,7 +632,7 @@ Key-value pairs in the form of a hash table. For example: @{key0="value0";key1=$null;key2="value2"} ```yaml -Type: System.Collections.Hashtable +Type: Hashtable Parameter Sets: (All) Aliases: @@ -628,7 +647,7 @@ Accept wildcard characters: False The list of trusted root certificates ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[] +Type: PSApplicationGatewayTrustedRootCertificate[] Parameter Sets: (All) Aliases: @@ -643,7 +662,7 @@ Accept wildcard characters: False Specifies URL path maps for the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[] +Type: PSApplicationGatewayUrlPathMap[] Parameter Sets: (All) Aliases: @@ -658,7 +677,7 @@ Accept wildcard characters: False ResourceId of the user assigned identity to be assigned to Application Gateway. ```yaml -Type: System.String +Type: String Parameter Sets: IdentityByUserAssignedIdentityId Aliases: UserAssignedIdentity @@ -674,7 +693,7 @@ Specifies a web application firewall (WAF) configuration. You can use the Get-AzApplicationGatewayWebApplicationFirewallConfiguration cmdlet to get a WAF. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration +Type: PSApplicationGatewayWebApplicationFirewallConfiguration Parameter Sets: (All) Aliases: @@ -689,7 +708,7 @@ Accept wildcard characters: False A list of availability zones denoting where the application gateway needs to come from. ```yaml -Type: System.String[] +Type: String[] Parameter Sets: (All) Aliases: @@ -704,7 +723,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: cf @@ -720,7 +739,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: wi diff --git a/src/Network/Network/help/New-AzApplicationGatewayFrontendIPConfig.md b/src/Network/Network/help/New-AzApplicationGatewayFrontendIPConfig.md index d120e44e1b0d..194f75ebf9f7 100644 --- a/src/Network/Network/help/New-AzApplicationGatewayFrontendIPConfig.md +++ b/src/Network/Network/help/New-AzApplicationGatewayFrontendIPConfig.md @@ -16,13 +16,16 @@ Creates a front-end IP configuration for an application gateway. ### SetByResourceId ``` New-AzApplicationGatewayFrontendIPConfig -Name [-PrivateIPAddress ] [-SubnetId ] - [-PublicIPAddressId ] [-DefaultProfile ] [] + [-PublicIPAddressId ] [-PrivateLinkConfigurationId ] + [-DefaultProfile ] [] ``` ### SetByResource ``` New-AzApplicationGatewayFrontendIPConfig -Name [-PrivateIPAddress ] [-Subnet ] - [-PublicIPAddress ] [-DefaultProfile ] [] + [-PublicIPAddress ] + [-PrivateLinkConfiguration ] + [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -72,7 +75,7 @@ The third command creates a front-end IP configuration named FrontEndIP03 using The credentials, account, tenant, and subscription used for communication with azure. ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -87,7 +90,7 @@ Accept wildcard characters: False Specifies the name of the front-end IP configuration that this cmdlet creates. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -104,7 +107,7 @@ This can be specified only if a subnet is specified. This IP is statically allocated from the subnet. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -115,11 +118,41 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -PrivateLinkConfiguration +PrivateLinkConfiguration + +```yaml +Type: PSApplicationGatewayPrivateLinkConfiguration +Parameter Sets: SetByResource +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrivateLinkConfigurationId +PrivateLinkConfigurationId + +```yaml +Type: String +Parameter Sets: SetByResourceId +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -PublicIPAddress Specifies the public IP address object which this cmdlet associates with the front-end IP address of the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress +Type: PSPublicIpAddress Parameter Sets: SetByResource Aliases: @@ -134,7 +167,7 @@ Accept wildcard characters: False Specifies the public IP address ID which this cmdlet associates with the front-end IP of the application gateway. ```yaml -Type: System.String +Type: String Parameter Sets: SetByResourceId Aliases: @@ -152,7 +185,7 @@ If the *PrivateIPAddress* parameter is specified, it should belong to the subnet If *PrivateIPAddress* is not specified, one of the IP addresses from this subnet is dynamically picked up as the front-end IP address of the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSSubnet +Type: PSSubnet Parameter Sets: SetByResource Aliases: @@ -170,7 +203,7 @@ If the *PrivateIPAddress* parameter is specified, it should belong to the subnet If *PrivateIPAddress* is not specified, one of the IP addresses from this subnet is dynamically picked up as the front-end IP address of the application gateway. ```yaml -Type: System.String +Type: String Parameter Sets: SetByResourceId Aliases: @@ -182,7 +215,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/Network/Network/help/New-AzApplicationGatewayPrivateLinkConfiguration.md b/src/Network/Network/help/New-AzApplicationGatewayPrivateLinkConfiguration.md new file mode 100644 index 000000000000..3f9922cad758 --- /dev/null +++ b/src/Network/Network/help/New-AzApplicationGatewayPrivateLinkConfiguration.md @@ -0,0 +1,141 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/new-azapplicationgatewayprivatelinkconfiguration +schema: 2.0.0 +--- + +# New-AzApplicationGatewayPrivateLinkConfiguration + +## SYNOPSIS +Creates a private link configuration for an application gateway + +## SYNTAX + +``` +New-AzApplicationGatewayPrivateLinkConfiguration -Name + -IpConfiguration [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **New-AzApplicationGatewayPrivateLinkConfiguration** cmdlet creates an PrivateLink Configuration for an Azure application gateway. +The private link configuration must be associated to a frontend ip configuration to enable the private link functionality. +One private link configuration can atmost be associated to only one frontend ip configuration on application gateway. + +## EXAMPLES + +### Example 1: Create an Private Link Configuration with single Ip Configuration +```powershell +PS C:\> $PrivateLinkConfiguration = New-AzApplicationGatewayPrivateLinkConfiguration -Name "privateLinkConfig01" -IpConfiguration $privateLinkIpConfiguration1 +``` + +This command creates an PrivateLink configuration named 'privateLinkConfig01' and stores the result in the variable named $PrivateLinkConfiguration. + +### Example 2: Create an Private Link Configuration with multiple Ip Configurations +```powershell +PS C:\> $PrivateLinkConfiguration = New-AzApplicationGatewayPrivateLinkConfiguration -Name "privateLinkConfig01" -IpConfiguration $privateLinkIpConfiguration1, $privateLinkIpConfiguration2 +``` + +This command creates an PrivateLink configuration named 'privateLinkConfig01' with two ipConfigurations and stores the result in the variable named $PrivateLinkConfiguration. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IpConfiguration +The list of ipConfiguration + +```yaml +Type: PSApplicationGatewayPrivateLinkIpConfiguration[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +The name of the privateLink configuration + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[] + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration + +## NOTES + +## RELATED LINKS + +[Get-AzApplicationGatewayPrivateLinkConfiguration](./Get-AzApplicationGatewayPrivateLinkConfiguration.md) + +[Add-AzApplicationGatewayPrivateLinkConfiguration](./Add-AzApplicationGatewayPrivateLinkConfiguration.md) + +[Remove-AzApplicationGatewayPrivateLinkConfiguration](./Remove-AzApplicationGatewayPrivateLinkConfiguration.md) + +[Set-AzApplicationGatewayPrivateLinkConfiguration](./Set-AzApplicationGatewayPrivateLinkConfiguration.md) diff --git a/src/Network/Network/help/New-AzApplicationGatewayPrivateLinkIpConfiguration.md b/src/Network/Network/help/New-AzApplicationGatewayPrivateLinkIpConfiguration.md new file mode 100644 index 000000000000..45cf538a4870 --- /dev/null +++ b/src/Network/Network/help/New-AzApplicationGatewayPrivateLinkIpConfiguration.md @@ -0,0 +1,141 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/new-azapplicationgatewayprivatelinkipconfiguration +schema: 2.0.0 +--- + +# New-AzApplicationGatewayPrivateLinkIpConfiguration + +## SYNOPSIS +Creates an Ip Configuration to be associated with PrivateLink Configuration + +## SYNTAX + +``` +New-AzApplicationGatewayPrivateLinkIpConfiguration -Name -Subnet + [-PrivateIpAddressVersion ] [-PrivateIpAddress ] [-Primary] + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **New-AzApplicationGatewayPrivateLinkIpConfiguration** cmdlet creates an Ip Configuration to be associated with PrivateLink Configuration for an Azure application gateway. + +## EXAMPLES + +### Example 1: PrivateLink Ip Configuration +```powershell +PS C:\> $PrivateLinkIpConfiguration = New-AzApplicationGatewayPrivateLinkConfiguration -Name "ipConfig01" -Subnet $subnet -Primary +``` + +This command creates an PrivateLink IP Configuration named 'ipConfig01' stores the result in the variable named $PrivateLinkIpConfiguration. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the IpConfiguration + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Primary +Indicate the ip configuration is primary. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrivateIpAddress +The private ip address of the ipConfiguration if static allocation is desired. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrivateIpAddressVersion +The ip version of the ip configuration + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: IPv4 + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Subnet +Subnet + +```yaml +Type: PSSubnet +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration + +## NOTES + +## RELATED LINKS + +[New-AzApplicationGatewayPrivateLinkConfiguration](./New-AzApplicationGatewayPrivateLinkConfiguration.md) \ No newline at end of file diff --git a/src/Network/Network/help/Remove-AzApplicationGatewayFrontendIPConfig.md b/src/Network/Network/help/Remove-AzApplicationGatewayFrontendIPConfig.md index 35baef597761..4d0e059cc028 100644 --- a/src/Network/Network/help/Remove-AzApplicationGatewayFrontendIPConfig.md +++ b/src/Network/Network/help/Remove-AzApplicationGatewayFrontendIPConfig.md @@ -38,7 +38,7 @@ The second command removes the front-end IP configuration named FrontEndIP02 fro Specifies an application gateway from which to remove a front-end IP configuration. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGateway +Type: PSApplicationGateway Parameter Sets: (All) Aliases: @@ -53,7 +53,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with azure. ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -68,7 +68,7 @@ Accept wildcard characters: False Specifies the name of a front-end IP configuration to remove. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -80,7 +80,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/Network/Network/help/Remove-AzApplicationGatewayPrivateLinkConfiguration.md b/src/Network/Network/help/Remove-AzApplicationGatewayPrivateLinkConfiguration.md new file mode 100644 index 000000000000..c5c05b48848f --- /dev/null +++ b/src/Network/Network/help/Remove-AzApplicationGatewayPrivateLinkConfiguration.md @@ -0,0 +1,102 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/remove-azapplicationgatewayprivatelinkconfiguration +schema: 2.0.0 +--- + +# Remove-AzApplicationGatewayPrivateLinkConfiguration + +## SYNOPSIS +Removes a privateLink configuration from an application gateway. + +## SYNTAX + +``` +Remove-AzApplicationGatewayPrivateLinkConfiguration -Name -ApplicationGateway + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Remove-AzApplicationGatewayPrivateLinkConfiguration** cmdlet removes an privateLink configuration from an Azure application gateway. + +## EXAMPLES + +### Example 1: Remove an application gateway PrivateLink Configuration +``` +PS C:\>$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> Remove-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway $AppGw -Name "privateLinkConfig01" +``` + +The first command gets an application gateway and stores it in the $AppGw variable. +The second command removes the privateLink configuration named privateLinkConfig01 from the application gateway stored in $AppGw. + +## PARAMETERS + +### -ApplicationGateway +The applicationGateway + +```yaml +Type: PSApplicationGateway +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the application gateway privateLink configuration + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + +## NOTES + +## RELATED LINKS + +[New-AzApplicationGatewayPrivateLinkConfiguration](./New-AzApplicationGatewayPrivateLinkConfiguration.md) + +[Add-AzApplicationGatewayPrivateLinkConfiguration](./Add-AzApplicationGatewayPrivateLinkConfiguration.md) + +[Get-AzApplicationGatewayPrivateLinkConfiguration](./Get-AzApplicationGatewayPrivateLinkConfiguration.md) + +[Set-AzApplicationGatewayPrivateLinkConfiguration](./Set-AzApplicationGatewayPrivateLinkConfiguration.md) \ No newline at end of file diff --git a/src/Network/Network/help/Set-AzApplicationGateway.md b/src/Network/Network/help/Set-AzApplicationGateway.md index 439786f378b0..e1b1dfa7bfe1 100644 --- a/src/Network/Network/help/Set-AzApplicationGateway.md +++ b/src/Network/Network/help/Set-AzApplicationGateway.md @@ -36,7 +36,7 @@ This command updates the application gateway with settings in the $AppGw variabl Specifies an application gateway object representing the state to which the application gateway should be set. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGateway +Type: PSApplicationGateway Parameter Sets: (All) Aliases: @@ -51,7 +51,7 @@ Accept wildcard characters: False Run cmdlet in the background ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: @@ -66,7 +66,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with azure. ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -78,7 +78,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/Network/Network/help/Set-AzApplicationGatewayFrontendIPConfig.md b/src/Network/Network/help/Set-AzApplicationGatewayFrontendIPConfig.md index ca3d64f36ee2..847fb9f597c2 100644 --- a/src/Network/Network/help/Set-AzApplicationGatewayFrontendIPConfig.md +++ b/src/Network/Network/help/Set-AzApplicationGatewayFrontendIPConfig.md @@ -17,13 +17,14 @@ Modifies a front-end IP address configuration. ``` Set-AzApplicationGatewayFrontendIPConfig -ApplicationGateway -Name [-PrivateIPAddress ] [-SubnetId ] [-PublicIPAddressId ] - [-DefaultProfile ] [] + [-PrivateLinkConfigurationId ] [-DefaultProfile ] [] ``` ### SetByResource ``` Set-AzApplicationGatewayFrontendIPConfig -ApplicationGateway -Name [-PrivateIPAddress ] [-Subnet ] [-PublicIPAddress ] + [-PrivateLinkConfiguration ] [-DefaultProfile ] [] ``` @@ -80,7 +81,7 @@ The fourth command adds a front-end IP configuration named FrontendIP02 using $S Specifies an application gateway object in which to modify the front-end IP configuration. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGateway +Type: PSApplicationGateway Parameter Sets: (All) Aliases: @@ -95,7 +96,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with azure. ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -110,7 +111,7 @@ Accept wildcard characters: False Specifies the name of the front-end IP configuration that this cmdlet modifies. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -126,7 +127,7 @@ Specifies the private IP address. If specified, this IP is statically allocated from the subnet. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -137,11 +138,41 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -PrivateLinkConfiguration +PrivateLinkConfiguration + +```yaml +Type: PSApplicationGatewayPrivateLinkConfiguration +Parameter Sets: SetByResource +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrivateLinkConfigurationId +PrivateLinkConfigurationId + +```yaml +Type: String +Parameter Sets: SetByResourceId +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -PublicIPAddress Specifies the public IP address. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress +Type: PSPublicIpAddress Parameter Sets: SetByResource Aliases: @@ -156,7 +187,7 @@ Accept wildcard characters: False Specifies the ID of the public IP address. ```yaml -Type: System.String +Type: String Parameter Sets: SetByResourceId Aliases: @@ -174,7 +205,7 @@ If the *PrivateIPAddress* address is specified, it should belong to this subnet. If *PrivateIPAddress* is not specified, one of the IP addresses from this subnet is dynamically picked up as the front-end IP address of the application gateway. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSSubnet +Type: PSSubnet Parameter Sets: SetByResource Aliases: @@ -192,7 +223,7 @@ If the *PrivateIPAddress* parameter is specified, it should belong to this subne If *PrivateIPAddress* is not specified, one of the IP addresses from this subnet is dynamically picked up as the front-end IP address of the application gateway. ```yaml -Type: System.String +Type: String Parameter Sets: SetByResourceId Aliases: @@ -204,7 +235,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/Network/Network/help/Set-AzApplicationGatewayPrivateLinkConfiguration.md b/src/Network/Network/help/Set-AzApplicationGatewayPrivateLinkConfiguration.md new file mode 100644 index 000000000000..9d4156bc61ab --- /dev/null +++ b/src/Network/Network/help/Set-AzApplicationGatewayPrivateLinkConfiguration.md @@ -0,0 +1,151 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/set-azapplicationgatewayprivatelinkconfiguration +schema: 2.0.0 +--- + +# Set-AzApplicationGatewayPrivateLinkConfiguration + +## SYNOPSIS +Modifies an PrivateLink Configuration for an application gateway. + +## SYNTAX + +``` +Set-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway -Name + -IpConfiguration [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-AzApplicationGatewayPrivateLinkConfiguration** cmdlet modifies an privateLink configuration for an Azure application gateway. + +## EXAMPLES + +### Example 1: Set a PrivateLink Configuration +``` +PS C:\>$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Set-AzApplicationGatewayPrivateLinkConfiguration -ApplicationGateway $AppGw -Name "privateLinkConfig01" -IpConfiguration $privateLinkIpConfiguration01 +``` + +The first command gets the application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the $AppGw variable. +The second command sets the privateLink configuration with name privateLinkConfig01 to use the ip configuration stored in $privateLinkIpConfiguration01 + +## PARAMETERS + +### -ApplicationGateway +The applicationGateway + +```yaml +Type: PSApplicationGateway +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IpConfiguration +The list of ipConfiguration + +```yaml +Type: PSApplicationGatewayPrivateLinkIpConfiguration[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +The name of the privateLink configuration + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + +### Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[] + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSApplicationGateway + +## NOTES + +## RELATED LINKS + +[New-AzApplicationGatewayPrivateLinkConfiguration](./New-AzApplicationGatewayPrivateLinkConfiguration.md) + +[Add-AzApplicationGatewayPrivateLinkConfiguration](./Add-AzApplicationGatewayPrivateLinkConfiguration.md) + +[Get-AzApplicationGatewayPrivateLinkConfiguration](./Get-AzApplicationGatewayPrivateLinkConfiguration.md) + +[Remove-AzApplicationGatewayPrivateLinkConfiguration](./Remove-AzApplicationGatewayPrivateLinkConfiguration.md) \ No newline at end of file diff --git a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv index 08e090f3be0f..278e5865a173 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv @@ -339,4 +339,9 @@ "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject","New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject","1","8100","New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject","New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject","1","8510","Cmdlet 'New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzRadiusServerCommand","New-AzRadiusServer","1","8100","New-AzRadiusServer Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneConfigCommand","New-AzPrivateDnsZoneConfig","1","8100","New-AzPrivateDnsZoneConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" \ No newline at end of file +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneConfigCommand","New-AzPrivateDnsZoneConfig","1","8100","New-AzPrivateDnsZoneConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayPrivateLinkConfigurationCommand","Add-AzApplicationGatewayPrivateLinkConfiguration","1","8100","Add-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkConfigurationCommand","New-AzApplicationGatewayPrivateLinkConfiguration","1","8100","New-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand","New-AzApplicationGatewayPrivateLinkIpConfiguration","1","8100","New-AzApplicationGatewayPrivateLinkIpConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand","Remove-AzApplicationGatewayPrivateLinkConfiguration","1","8100","Remove-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayPrivateLinkConfigurationCommand","Set-AzApplicationGatewayPrivateLinkConfiguration","1","8100","Set-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" \ No newline at end of file From f801ff3211aeda199e227ad1e48d751bba80264b Mon Sep 17 00:00:00 2001 From: Jaishal Shah Date: Fri, 12 Jun 2020 02:10:47 -0700 Subject: [PATCH 2/2] add change log --- src/Network/Network/ChangeLog.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index b79b6de75f43..998260456868 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -67,7 +67,13 @@ - Changes names for RuleGroup, RuleCollectionGroup and RuleType - Added support for Firewall Policy NAT Rule Collections to support multiple NAT Rule Collection * Added Support for IpGroups in AzureFirewallPolicy Application, Network, and NAT Rules. - +* Added new cmdlets to support PrivateLink On Application Gateway + - `New-AzApplicationGatewayPrivateLinkConfiguration` + - `Get-AzApplicationGatewayPrivateLinkConfiguration` + - `New-AzApplicationGatewayPrivateLinkConfiguration` + - `Set-AzApplicationGatewayPrivateLinkConfiguration` + - `Remove-AzApplicationGatewayPrivateLinkConfiguration` + - `New-AzApplicationGatewayPrivateLinkIpConfiguration` ## Version 2.5.0 * Updated cmdlets to enable connection on private IP for Virtual Network Gateway. - `New-AzVirtualNetworkGateway`