diff --git a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs index cbb16afa0dfc..174c092ba3c6 100644 --- a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs +++ b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs @@ -129,5 +129,13 @@ public void TestApplicationGatewayCRUDRewriteRuleSetUrlConfiguration() { TestRunner.RunTestScript(string.Format("Test-ApplicationGatewayCRUDRewriteRuleSetWithUrlConfiguration -baseDir '{0}'", AppDomain.CurrentDomain.BaseDirectory)); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, NrpTeamAlias.nvadev)] + public void TestApplicationGatewayWithListenerHostNames() + { + TestRunner.RunTestScript(string.Format("Test-ApplicationGatewayWithListenerHostNames -baseDir '{0}'", AppDomain.CurrentDomain.BaseDirectory)); + } } } diff --git a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 index b2632b431527..a81c27d6e45a 100644 --- a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 @@ -2581,4 +2581,222 @@ function Test-ApplicationGatewayWithFirewallPolicy # Cleanup Clean-ResourceGroup $rgname } -} \ No newline at end of file +} + +<# +.SYNOPSIS +This case tests the per-listener HostNames feature. +#> +function Test-ApplicationGatewayWithListenerHostNames +{ + param + ( + $basedir = "./" + ) + + # Setup + $location = Get-ProviderLocation "Microsoft.Network/applicationGateways" "West US 2" + + $rgname = Get-ResourceGroupName + $appgwName = Get-ResourceName + $vnetName = Get-ResourceName + $gwSubnetName = Get-ResourceName + $vnetName2 = Get-ResourceName + $gwSubnetName2 = Get-ResourceName + $publicIpName = Get-ResourceName + $gipconfigname = Get-ResourceName + + $frontendPort01Name = Get-ResourceName + $frontendPort02Name = Get-ResourceName + $fipconfigName = Get-ResourceName + $listener01Name = Get-ResourceName + $listener02Name = Get-ResourceName + $listener03Name = Get-ResourceName + + $poolName = Get-ResourceName + $poolName02 = Get-ResourceName + $trustedRootCertName = Get-ResourceName + $poolSetting01Name = Get-ResourceName + $poolSetting02Name = Get-ResourceName + $probeName = Get-ResourceName + + $rule01Name = Get-ResourceName + $rule02Name = Get-ResourceName + + $customError403Url01 = "https://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm" + $customError403Url02 = "http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm" + + $urlPathMapName = Get-ResourceName + $urlPathMapName2 = Get-ResourceName + $PathRuleName = Get-ResourceName + $PathRule01Name = Get-ResourceName + $redirectName = Get-ResourceName + $sslCert01Name = Get-ResourceName + + $rewriteRuleName = Get-ResourceName + $rewriteRuleSetName = Get-ResourceName + + $wafPolicy = Get-ResourceName + + try + { + $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 + $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $gwSubnet + $vnet = Get-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname + $gwSubnet = Get-AzVirtualNetworkSubnetConfig -Name $gwSubnetName -VirtualNetwork $vnet + + $gwSubnet2 = New-AzVirtualNetworkSubnetConfig -Name $gwSubnetName2 -AddressPrefix 11.0.1.0/24 + $vnet2 = New-AzVirtualNetwork -Name $vnetName2 -ResourceGroupName $rgname -Location $location -AddressPrefix 11.0.0.0/8 -Subnet $gwSubnet2 + $vnet2 = Get-AzVirtualNetwork -Name $vnetName2 -ResourceGroupName $rgname + $gwSubnet2 = Get-AzVirtualNetworkSubnetConfig -Name $gwSubnetName2 -VirtualNetwork $vnet2 + + # 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 + + $fipconfig = New-AzApplicationGatewayFrontendIPConfig -Name $fipconfigName -PublicIPAddress $publicip + $fp01 = New-AzApplicationGatewayFrontendPort -Name $frontendPort01Name -Port 80 + $fp02 = New-AzApplicationGatewayFrontendPort -Name $frontendPort02Name -Port 443 + $listener01 = New-AzApplicationGatewayHttpListener -Name $listener01Name -Protocol Http -FrontendIPConfiguration $fipconfig -FrontendPort $fp01 -RequireServerNameIndication false + + $pool = New-AzApplicationGatewayBackendAddressPool -Name $poolName -BackendIPAddresses www.microsoft.com, www.bing.com + $poolSetting01 = New-AzApplicationGatewayBackendHttpSettings -Name $poolSetting01Name -Port 443 -Protocol Https -CookieBasedAffinity Enabled -PickHostNameFromBackendAddress + + #rule + $rule01 = New-AzApplicationGatewayRequestRoutingRule -Name $rule01Name -RuleType basic -BackendHttpSettings $poolSetting01 -HttpListener $listener01 -BackendAddressPool $pool + + # sku + $sku = New-AzApplicationGatewaySku -Name WAF_v2 -Tier WAF_v2 + + $autoscaleConfig = New-AzApplicationGatewayAutoscaleConfiguration -MinCapacity 3 + Assert-AreEqual $autoscaleConfig.MinCapacity 3 + + $redirectConfig = New-AzApplicationGatewayRedirectConfiguration -Name $redirectName -RedirectType Permanent -TargetListener $listener01 -IncludePath $true -IncludeQueryString $true + + $headerConfiguration = New-AzApplicationGatewayRewriteRuleHeaderConfiguration -HeaderName "abc" -HeaderValue "def" + $actionSet = New-AzApplicationGatewayRewriteRuleActionSet -RequestHeaderConfiguration $headerConfiguration + $rewriteRule = New-AzApplicationGatewayRewriteRule -Name $rewriteRuleName -ActionSet $actionSet + $rewriteRuleSet = New-AzApplicationGatewayRewriteRuleSet -Name $rewriteRuleSetName -RewriteRule $rewriteRule + + $videoPathRule = New-AzApplicationGatewayPathRuleConfig -Name $PathRuleName -Paths "/video" -RedirectConfiguration $redirectConfig -RewriteRuleSet $rewriteRuleSet + Assert-AreEqual $videoPathRule.RewriteRuleSet.Id $rewriteRuleSet.Id + $imagePathRule = New-AzApplicationGatewayPathRuleConfig -Name $PathRule01Name -Paths "/image" -RedirectConfigurationId $redirectConfig.Id -RewriteRuleSetId $rewriteRuleSet.Id + Assert-AreEqual $imagePathRule.RewriteRuleSet.Id $rewriteRuleSet.Id + $urlPathMap = New-AzApplicationGatewayUrlPathMapConfig -Name $urlPathMapName -PathRules $videoPathRule -DefaultBackendAddressPool $pool -DefaultBackendHttpSettings $poolSetting01 + $urlPathMap2 = New-AzApplicationGatewayUrlPathMapConfig -Name $urlPathMapName2 -PathRules $videoPathRule,$imagePathRule -DefaultRedirectConfiguration $redirectConfig -DefaultRewriteRuleSet $rewriteRuleSet + $probe = New-AzApplicationGatewayProbeConfig -Name $probeName -Protocol Http -Path "/path/path.htm" -Interval 89 -Timeout 88 -UnhealthyThreshold 8 -MinServers 1 -PickHostNameFromBackendHttpSettings + + #[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + $pw01 = ConvertTo-SecureString "P@ssw0rd" -AsPlainText -Force + $sslCert01Path = $basedir + "/ScenarioTests/Data/ApplicationGatewaySslCert1.pfx" + $sslCert = New-AzApplicationGatewaySslCertificate -Name $sslCert01Name -CertificateFile $sslCert01Path -Password $pw01 + + # Create Application Gateway + $appgw = New-AzApplicationGateway -Name $appgwName -ResourceGroupName $rgname -Location $location -BackendAddressPools $pool -BackendHttpSettingsCollection $poolSetting01 -FrontendIpConfigurations $fipconfig -GatewayIpConfigurations $gipconfig -FrontendPorts $fp01,$fp02 -HttpListeners $listener01 -RequestRoutingRules $rule01 -Sku $sku -AutoscaleConfiguration $autoscaleConfig -UrlPathMap $urlPathMap,$urlPathMap2 -RedirectConfiguration $redirectConfig -Probe $probe -SslCertificate $sslCert -RewriteRuleSet $rewriteRuleSet + + $certFilePath = $basedir + "/ScenarioTests/Data/ApplicationGatewayAuthCert.cer" + $certFilePath2 = $basedir + "/ScenarioTests/Data/TrustedRootCertificate.cer" + + # Add + $listener01 = Get-AzApplicationGatewayHttpListener -ApplicationGateway $appgw -Name $listener01Name + Add-AzApplicationGatewayTrustedRootCertificate -ApplicationGateway $appgw -Name $trustedRootCertName -CertificateFile $certFilePath + Add-AzApplicationGatewayHttpListenerCustomError -HttpListener $listener01 -StatusCode HttpStatus403 -CustomErrorPageUrl $customError403Url01 + + # Add to test Remove + Add-AzApplicationGatewayBackendHttpSettings -ApplicationGateway $appgw -Name $poolSetting02Name -Port 1234 -Protocol Http -CookieBasedAffinity Enabled -RequestTimeout 42 -HostName test -Path /test -AffinityCookieName test + $fipconfig = Get-AzApplicationGatewayFrontendIPConfig -ApplicationGateway $appgw -Name $fipconfigName + Add-AzApplicationGatewayHttpListener -ApplicationGateway $appgw -Name $listener02Name -Protocol Https -FrontendIPConfiguration $fipconfig -FrontendPort $fp02 -HostNames "TestHostName" -SslCertificate $sslCert + $listener02 = Get-AzApplicationGatewayHttpListener -ApplicationGateway $appgw -Name $listener02Name + Add-AzApplicationGatewayHttpListener -ApplicationGateway $appgw -Name $listener03Name -Protocol Https -FrontendIPConfiguration $fipconfig -FrontendPort $fp02 -HostName TestName -SslCertificate $sslCert + $urlPathMap = Get-AzApplicationGatewayUrlPathMapConfig -ApplicationGateway $appgw -Name $urlPathMapName + Add-AzApplicationGatewayRequestRoutingRule -ApplicationGateway $appgw -Name $rule02Name -RuleType PathBasedRouting -HttpListener $listener02 -UrlPathMap $urlPathMap + + # Add twice + Assert-ThrowsLike { Add-AzApplicationGatewayTrustedRootCertificate -ApplicationGateway $appgw -Name $trustedRootCertName -CertificateFile $certFilePath } "*already exists*" + Assert-ThrowsLike { Add-AzApplicationGatewayHttpListenerCustomError -HttpListener $listener01 -StatusCode HttpStatus403 -CustomErrorPageUrl $customError403Url01 } "*already exists*" + + # Add unsupported + Assert-ThrowsLike { Add-AzApplicationGatewayBackendAddressPool -ApplicationGateway $appgw -Name $poolName02 -BackendIPAddresses www.microsoft.com -BackendFqdns www.bing.com } "*At most one of*can be specified*" + + Add-AzApplicationGatewayBackendAddressPool -ApplicationGateway $appgw -Name $poolName02 -BackendFqdns www.bing.com,www.microsoft.com + + $appgw = Set-AzApplicationGateway -ApplicationGateway $appgw + + Assert-NotNull $appgw.HttpListeners[0].CustomErrorConfigurations + Assert-NotNull $appgw.TrustedRootCertificates + Assert-AreEqual $appgw.BackendHttpSettingsCollection.Count 2 + Assert-AreEqual $appgw.HttpListeners.Count 3 + Assert-AreEqual $appgw.RequestRoutingRules.Count 2 + + # Get + $trustedCert = Get-AzApplicationGatewayTrustedRootCertificate -ApplicationGateway $appgw -Name $trustedRootCertName + Assert-NotNull $trustedCert + + # List + $trustedCerts = Get-AzApplicationGatewayTrustedRootCertificate -ApplicationGateway $appgw + Assert-NotNull $trustedCerts + Assert-AreEqual $trustedCerts.Count 1 + + # Set + $listener01 = Get-AzApplicationGatewayHttpListener -ApplicationGateway $appgw -Name $listener01Name + Set-AzApplicationGatewayAutoscaleConfiguration -ApplicationGateway $appgw -MinCapacity 2 + Set-AzApplicationGatewayHttpListenerCustomError -HttpListener $listener01 -StatusCode HttpStatus403 -CustomErrorPageUrl $customError403Url02 + $disabledRuleGroup1 = New-AzApplicationGatewayFirewallDisabledRuleGroupConfig -RuleGroupName "crs_41_sql_injection_attacks" -Rules 981318,981320 + $disabledRuleGroup2 = New-AzApplicationGatewayFirewallDisabledRuleGroupConfig -RuleGroupName "crs_35_bad_robots" + $exclusion1 = New-AzApplicationGatewayFirewallExclusionConfig -Variable "RequestHeaderNames" -Operator "StartsWith" -Selector "xyz" + $exclusion2 = New-AzApplicationGatewayFirewallExclusionConfig -Variable "RequestArgNames" -Operator "Equals" -Selector "a" + Set-AzApplicationGatewayWebApplicationFirewallConfiguration -ApplicationGateway $appgw -Enabled $true -FirewallMode Prevention -RuleSetType "OWASP" -RuleSetVersion "2.2.9" -DisabledRuleGroups $disabledRuleGroup1,$disabledRuleGroup2 -RequestBodyCheck $true -MaxRequestBodySizeInKb 80 -FileUploadLimitInMb 70 -Exclusion $exclusion1,$exclusion2 + Set-AzApplicationGatewayTrustedRootCertificate -ApplicationGateway $appgw -Name $trustedRootCertName -CertificateFile $certFilePath2 + $appgw = Set-AzApplicationGateway -ApplicationGateway $appgw + + # Get Application Gateway + $appgw = Get-AzApplicationGateway -Name $appgwName -ResourceGroupName $rgname + + # First Check firewall configuraiton + Assert-AreEqual $appgw.WebApplicationFirewallConfiguration.Enabled $true + Assert-AreEqual $appgw.WebApplicationFirewallConfiguration.FirewallMode "Prevention" + Assert-AreEqual $appgw.WebApplicationFirewallConfiguration.RuleSetType "OWASP" + Assert-AreEqual $appgw.WebApplicationFirewallConfiguration.RuleSetVersion "2.2.9" + Assert-AreEqual $appgw.WebApplicationFirewallConfiguration.DisabledRuleGroups.Count 2 + Assert-AreEqual $appgw.WebApplicationFirewallConfiguration.RequestBodyCheck $true + Assert-AreEqual $appgw.WebApplicationFirewallConfiguration.MaxRequestBodySizeInKb 80 + Assert-AreEqual $appgw.WebApplicationFirewallConfiguration.FileUploadLimitInMb 70 + Assert-AreEqual $appgw.WebApplicationFirewallConfiguration.Exclusions.Count 2 + + # Set non-exiting + Assert-ThrowsLike { Set-AzApplicationGatewayHttpListenerCustomError -HttpListener $listener01 -StatusCode HttpStatus408 -CustomErrorPageUrl $customError403Url02 } "*does not exist*" + Assert-ThrowsLike { Set-AzApplicationGatewayTrustedRootCertificate -ApplicationGateway $appgw -Name "fakeName" -CertificateFile $certFilePath } "*does not exist*" + + # Get Application Gateway backend health with expanded resource + $job = Get-AzApplicationGatewayBackendHealth -Name $appgwName -ResourceGroupName $rgname -ExpandResource "backendhealth/applicationgatewayresource" -AsJob + $job | Wait-Job + $backendHealth = $job | Receive-Job + Assert-NotNull $backendHealth.BackendAddressPools[0].BackendAddressPool.Name + + $appgw = Set-AzApplicationGateway -ApplicationGateway $appgw + + Assert-AreEqual $appgw.AutoscaleConfiguration.MinCapacity 2 + + # Remove + Remove-AzApplicationGatewayTrustedRootCertificate -ApplicationGateway $appgw -Name $trustedRootCertName + Remove-AzApplicationGatewayBackendHttpSettings -ApplicationGateway $appgw -Name $poolSetting02Name + Remove-AzApplicationGatewayRequestRoutingRule -ApplicationGateway $appgw -Name $rule02Name + Remove-AzApplicationGatewayHttpListener -ApplicationGateway $appgw -Name $listener02Name + + $appgw = Set-AzApplicationGateway -ApplicationGateway $appgw + + Assert-Null $appgw.TrustedRootCertificates + Assert-AreEqual $appgw.BackendHttpSettingsCollection.Count 1 + Assert-AreEqual $appgw.RequestRoutingRules.Count 1 + Assert-AreEqual $appgw.HttpListeners.Count 2 + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestApplicationGatewayWithListenerHostNames.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestApplicationGatewayWithListenerHostNames.json new file mode 100644 index 000000000000..135202ea513f --- /dev/null +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestApplicationGatewayWithListenerHostNames.json @@ -0,0 +1,11029 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2bb94109-4993-40ce-9c18-0b048f16efba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "340b5465-9ed2-4e77-abdd-1e560eae0de0" + ], + "x-ms-correlation-request-id": [ + "340b5465-9ed2-4e77-abdd-1e560eae0de0" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T100923Z:340b5465-9ed2-4e77-abdd-1e560eae0de0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "62035" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"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 \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourcegroups/ps5110?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlZ3JvdXBzL3BzNTExMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b339a92-902a-4fc3-a5b2-7f098c69537e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "1406f556-179a-40a1-a470-0da73ad5662d" + ], + "x-ms-correlation-request-id": [ + "1406f556-179a-40a1-a470-0da73ad5662d" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T100927Z:1406f556-179a-40a1-a470-0da73ad5662d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:26 GMT" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110\",\r\n \"name\": \"ps5110\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDU5P2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f314fb2e-6a80-42b6-a4f1-9ab7646b2177" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1eea6737-c0f6-4593-b8ea-7cf75c1eb247" + ], + "x-ms-correlation-request-id": [ + "1eea6737-c0f6-4593-b8ea-7cf75c1eb247" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T100928Z:1eea6737-c0f6-4593-b8ea-7cf75c1eb247" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "149" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps459' under resource group 'ps5110' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDU5P2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"02f19aa2-dcb1-40d9-a82f-65c620ce46a7\"" + ], + "x-ms-request-id": [ + "bfb7c119-bcc1-4db7-ba8d-6d53e9076990" + ], + "x-ms-correlation-request-id": [ + "9c2796b2-85ec-4102-9ab0-4d71f068c825" + ], + "x-ms-arm-service-request-id": [ + "7908485a-9bb6-46d8-b690-0ac4d66a242b" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T100940Z:9c2796b2-85ec-4102-9ab0-4d71f068c825" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:39 GMT" + ], + "Content-Length": [ + "1266" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps459\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459\",\r\n \"etag\": \"W/\\\"02f19aa2-dcb1-40d9-a82f-65c620ce46a7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"289b4879-dd6e-4f26-896d-6f3261695a54\",\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\": \"ps6245\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\",\r\n \"etag\": \"W/\\\"02f19aa2-dcb1-40d9-a82f-65c620ce46a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDU5P2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ba09269-672f-41a5-9b77-211cf3af642d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"02f19aa2-dcb1-40d9-a82f-65c620ce46a7\"" + ], + "x-ms-request-id": [ + "56c65ce1-3eb9-4777-a067-15b19b60a2df" + ], + "x-ms-correlation-request-id": [ + "54b02c93-981e-4ef6-8069-6f941cfd7c10" + ], + "x-ms-arm-service-request-id": [ + "1fd7520a-17d0-4b55-891b-bdf915bad600" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T100940Z:54b02c93-981e-4ef6-8069-6f941cfd7c10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:39 GMT" + ], + "Content-Length": [ + "1266" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps459\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459\",\r\n \"etag\": \"W/\\\"02f19aa2-dcb1-40d9-a82f-65c620ce46a7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"289b4879-dd6e-4f26-896d-6f3261695a54\",\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\": \"ps6245\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\",\r\n \"etag\": \"W/\\\"02f19aa2-dcb1-40d9-a82f-65c620ce46a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDU5P2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3cec1b66-9f16-44f6-b2a9-41c2a4160a1c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"02f19aa2-dcb1-40d9-a82f-65c620ce46a7\"" + ], + "x-ms-request-id": [ + "dcad2c90-5588-41d5-88d9-16e3253c7b89" + ], + "x-ms-correlation-request-id": [ + "94b029fb-9ab0-4956-9405-4ffe6f27f8af" + ], + "x-ms-arm-service-request-id": [ + "ee533ef1-2755-40b8-ada6-bc1b46fc19e9" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T100941Z:94b029fb-9ab0-4956-9405-4ffe6f27f8af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:40 GMT" + ], + "Content-Length": [ + "1266" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps459\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459\",\r\n \"etag\": \"W/\\\"02f19aa2-dcb1-40d9-a82f-65c620ce46a7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"289b4879-dd6e-4f26-896d-6f3261695a54\",\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\": \"ps6245\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\",\r\n \"etag\": \"W/\\\"02f19aa2-dcb1-40d9-a82f-65c620ce46a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDU5P2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"ps6245\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n },\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca8bb951-07eb-44bb-91b6-9793cc7ca548" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "622" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "0744000b-c0c3-44df-9b48-415ffb840c03" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0744000b-c0c3-44df-9b48-415ffb840c03?api-version=2019-11-01" + ], + "x-ms-correlation-request-id": [ + "e960f4c8-8404-4ef3-b9c6-7573896d8d6e" + ], + "x-ms-arm-service-request-id": [ + "ab2062cb-c187-448e-8b26-64ceeea4c20f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T100936Z:e960f4c8-8404-4ef3-b9c6-7573896d8d6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:35 GMT" + ], + "Content-Length": [ + "1264" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps459\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459\",\r\n \"etag\": \"W/\\\"72bc4655-8781-4e4b-b52c-35165af911a4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"289b4879-dd6e-4f26-896d-6f3261695a54\",\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\": \"ps6245\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\",\r\n \"etag\": \"W/\\\"72bc4655-8781-4e4b-b52c-35165af911a4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0744000b-c0c3-44df-9b48-415ffb840c03?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzA3NDQwMDBiLWMwYzMtNDRkZi05YjQ4LTQxNWZmYjg0MGMwMz9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3a8f35c3-c485-474d-99cc-10296913d478" + ], + "x-ms-correlation-request-id": [ + "c2c51a4b-1085-435b-a59c-d6ce4116833c" + ], + "x-ms-arm-service-request-id": [ + "b5ae7bc1-4a7d-4cff-bec2-9e226163e25b" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T100939Z:c2c51a4b-1085-435b-a59c-d6ce4116833c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:39 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps1186?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTE4Nj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d64c13e-9014-4ffc-91d5-fbfd9224bb37" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "01230151-9d42-4f22-888d-d4eb8d2614d6" + ], + "x-ms-correlation-request-id": [ + "01230151-9d42-4f22-888d-d4eb8d2614d6" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T100942Z:01230151-9d42-4f22-888d-d4eb8d2614d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "150" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps1186' under resource group 'ps5110' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps1186?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTE4Nj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"4d5e47ef-adf0-4fdc-9509-b5e98c21b0ad\"" + ], + "x-ms-request-id": [ + "1ec02d83-d8e9-4486-b772-828ae46e80fe" + ], + "x-ms-correlation-request-id": [ + "9af19dc6-300d-4106-825a-ae06ff7675c8" + ], + "x-ms-arm-service-request-id": [ + "bbd07219-270d-4a28-8c38-857eec04ba68" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T100951Z:9af19dc6-300d-4106-825a-ae06ff7675c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:50 GMT" + ], + "Content-Length": [ + "1268" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps1186\",\r\n \"etag\": \"W/\\\"4d5e47ef-adf0-4fdc-9509-b5e98c21b0ad\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a3828c39-abcc-42bc-9997-4d0be594b685\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/8\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps8537\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps1186/subnets/ps8537\",\r\n \"etag\": \"W/\\\"4d5e47ef-adf0-4fdc-9509-b5e98c21b0ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps1186?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTE4Nj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d62b68b8-63a2-4fbb-ae08-d89bdd374d0f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"4d5e47ef-adf0-4fdc-9509-b5e98c21b0ad\"" + ], + "x-ms-request-id": [ + "7c18e86a-0400-49e8-965e-74c524460efc" + ], + "x-ms-correlation-request-id": [ + "79696a3c-102c-45ff-95ec-65f2bb86bb90" + ], + "x-ms-arm-service-request-id": [ + "6dab5b87-d770-440e-a08d-22bb768ea387" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T100951Z:79696a3c-102c-45ff-95ec-65f2bb86bb90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:50 GMT" + ], + "Content-Length": [ + "1268" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps1186\",\r\n \"etag\": \"W/\\\"4d5e47ef-adf0-4fdc-9509-b5e98c21b0ad\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a3828c39-abcc-42bc-9997-4d0be594b685\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/8\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps8537\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps1186/subnets/ps8537\",\r\n \"etag\": \"W/\\\"4d5e47ef-adf0-4fdc-9509-b5e98c21b0ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps1186?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTE4Nj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1b1e9ee-d9d1-491f-9177-6abf99cdbcd7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"4d5e47ef-adf0-4fdc-9509-b5e98c21b0ad\"" + ], + "x-ms-request-id": [ + "2e4dbedf-c869-4109-a100-2050de8956e7" + ], + "x-ms-correlation-request-id": [ + "61b7f0e2-295a-4513-9dd1-88ed06ef0385" + ], + "x-ms-arm-service-request-id": [ + "8d72175c-b20d-40f5-998e-3b3734b13e9c" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T100952Z:61b7f0e2-295a-4513-9dd1-88ed06ef0385" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:51 GMT" + ], + "Content-Length": [ + "1268" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps1186\",\r\n \"etag\": \"W/\\\"4d5e47ef-adf0-4fdc-9509-b5e98c21b0ad\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a3828c39-abcc-42bc-9997-4d0be594b685\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/8\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps8537\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps1186/subnets/ps8537\",\r\n \"etag\": \"W/\\\"4d5e47ef-adf0-4fdc-9509-b5e98c21b0ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps1186?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMTE4Nj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/8\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"ps8537\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n },\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2cdd1b89-65c9-4205-b60e-17179e345680" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "621" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "f0de8cd6-674b-4b85-bd3f-6983eaad659e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/f0de8cd6-674b-4b85-bd3f-6983eaad659e?api-version=2019-11-01" + ], + "x-ms-correlation-request-id": [ + "bcc9b65a-1041-49e3-8f2a-54392e067a69" + ], + "x-ms-arm-service-request-id": [ + "270e45ce-80ce-4817-93b4-ef865123844d" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T100947Z:bcc9b65a-1041-49e3-8f2a-54392e067a69" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:46 GMT" + ], + "Content-Length": [ + "1266" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps1186\",\r\n \"etag\": \"W/\\\"3d39cfea-6a17-4e43-bd40-25665309cd0f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a3828c39-abcc-42bc-9997-4d0be594b685\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/8\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps8537\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps1186/subnets/ps8537\",\r\n \"etag\": \"W/\\\"3d39cfea-6a17-4e43-bd40-25665309cd0f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/f0de8cd6-674b-4b85-bd3f-6983eaad659e?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2YwZGU4Y2Q2LTY3NGItNGI4NS1iZDNmLTY5ODNlYWFkNjU5ZT9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "110fd14b-b4a2-46c2-96e7-fa9880013cce" + ], + "x-ms-correlation-request-id": [ + "5d64af2f-1d6c-4abf-a2fa-14e1cd8cca1b" + ], + "x-ms-arm-service-request-id": [ + "d1e54917-5422-479c-b6bf-ddc8aa53ad22" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T100950Z:5d64af2f-1d6c-4abf-a2fa-14e1cd8cca1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:50 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxMDUwP2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb65c678-e9ee-4f34-a10d-e8631081bc9e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "99bb6142-78ab-4352-9a7e-9fd2343e8efd" + ], + "x-ms-correlation-request-id": [ + "99bb6142-78ab-4352-9a7e-9fd2343e8efd" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T100952Z:99bb6142-78ab-4352-9a7e-9fd2343e8efd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "152" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps1050' under resource group 'ps5110' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxMDUwP2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b68b8d75-afec-4af5-9500-05886c472d17\"" + ], + "x-ms-request-id": [ + "9cd10b56-8e0b-49d0-8ea6-dfa4b3dd112e" + ], + "x-ms-correlation-request-id": [ + "22df3c2b-53da-4c34-bd2c-6ae56d471328" + ], + "x-ms-arm-service-request-id": [ + "76e68a30-a306-4fb3-8b36-e91405a4e362" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101000Z:22df3c2b-53da-4c34-bd2c-6ae56d471328" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:59 GMT" + ], + "Content-Length": [ + "628" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1050\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\",\r\n \"etag\": \"W/\\\"b68b8d75-afec-4af5-9500-05886c472d17\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03aefa81-cf01-493b-99ce-923837d42c6f\",\r\n \"ipAddress\": \"52.149.17.7\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxMDUwP2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d373ff0-48ee-4e13-85ed-202a9f49e3bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b68b8d75-afec-4af5-9500-05886c472d17\"" + ], + "x-ms-request-id": [ + "69c560ef-68ef-4193-9f65-b8a6d30f0d85" + ], + "x-ms-correlation-request-id": [ + "18956df9-9999-4ebb-9318-227d69e036b5" + ], + "x-ms-arm-service-request-id": [ + "eb204efa-801d-4a0b-a47c-78eb26658248" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101000Z:18956df9-9999-4ebb-9318-227d69e036b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:10:00 GMT" + ], + "Content-Length": [ + "628" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1050\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\",\r\n \"etag\": \"W/\\\"b68b8d75-afec-4af5-9500-05886c472d17\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03aefa81-cf01-493b-99ce-923837d42c6f\",\r\n \"ipAddress\": \"52.149.17.7\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHMxMDUwP2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"ipTags\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5a74ab8-d229-404d-8627-7b394e47c233" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "175" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "f11d6088-f0e9-46d2-b7e6-15f346c0e96b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/f11d6088-f0e9-46d2-b7e6-15f346c0e96b?api-version=2019-11-01" + ], + "x-ms-correlation-request-id": [ + "e41a8a5f-1883-48a4-9b71-f8d3394146f8" + ], + "x-ms-arm-service-request-id": [ + "16eee258-c078-482e-a366-31f38baad4d8" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T100958Z:e41a8a5f-1883-48a4-9b71-f8d3394146f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:57 GMT" + ], + "Content-Length": [ + "594" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1050\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\",\r\n \"etag\": \"W/\\\"d97fec1f-b84e-4b14-98c4-53b9e7ffa10c\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"03aefa81-cf01-493b-99ce-923837d42c6f\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/f11d6088-f0e9-46d2-b7e6-15f346c0e96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2YxMWQ2MDg4LWYwZTktNDZkMi1iN2U2LTE1ZjM0NmMwZTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b7ed104f-3f73-4aff-b98a-1e15ceccaaf0" + ], + "x-ms-correlation-request-id": [ + "b3602010-395d-45aa-a900-d03d94cce9d1" + ], + "x-ms-arm-service-request-id": [ + "6d06c26c-4cc9-43b7-9877-97632aa20572" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101000Z:b3602010-395d-45aa-a900-d03d94cce9d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:09:59 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9bf0e75b-447e-41cb-ae10-dbb80e9fc241" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d9ec000a-ba2a-48d4-9e94-03df9aafc0c0" + ], + "x-ms-correlation-request-id": [ + "d9ec000a-ba2a-48d4-9e94-03df9aafc0c0" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T101001Z:d9ec000a-ba2a-48d4-9e94-03df9aafc0c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:10:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "154" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/applicationGateways/ps9128' under resource group 'ps5110' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\"" + ], + "x-ms-request-id": [ + "3ef5af4e-9283-4513-beea-212d325f43ac" + ], + "x-ms-correlation-request-id": [ + "f41be961-e634-4709-ab24-e58a8bb1629b" + ], + "x-ms-arm-service-request-id": [ + "6ba788b6-57bd-4020-bf97-6c347ae7681c" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101354Z:f41be961-e634-4709-ab24-e58a8bb1629b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:13:53 GMT" + ], + "Content-Length": [ + "19943" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\"\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\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\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79820119-818f-4346-b895-47757bdfa8cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\"" + ], + "x-ms-request-id": [ + "1b99e000-11dd-4bfe-bc4c-c786b4dc8c73" + ], + "x-ms-correlation-request-id": [ + "1fe33302-8555-4675-84f0-ae2ff7334dd0" + ], + "x-ms-arm-service-request-id": [ + "97d80e03-bf6c-41a5-951a-0f2012083afa" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101354Z:1fe33302-8555-4675-84f0-ae2ff7334dd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:13:53 GMT" + ], + "Content-Length": [ + "19943" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\"\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\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\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79c438ae-9578-499d-8361-9b61c4d7846d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\"" + ], + "x-ms-request-id": [ + "739e336a-4250-44fb-bc03-79b37df64c64" + ], + "x-ms-correlation-request-id": [ + "20257ba2-a754-4318-8d9f-9a1d575d3b6d" + ], + "x-ms-arm-service-request-id": [ + "90d534aa-9dd7-471d-bc1d-82aaffd46127" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101355Z:20257ba2-a754-4318-8d9f-9a1d575d3b6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:13:54 GMT" + ], + "Content-Length": [ + "19943" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\"\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\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\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"fb2ee5b3-09ac-4a44-a057-523d7b18b60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\"" + ], + "x-ms-request-id": [ + "e7313906-57d5-40b1-89b9-2ff2c867bb8a" + ], + "x-ms-correlation-request-id": [ + "d7c9dc01-29e9-4a54-822b-e2dea463ea11" + ], + "x-ms-arm-service-request-id": [ + "5762dde0-8d70-4fd1-8c7a-40cb121dc70d" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102031Z:d7c9dc01-29e9-4a54-822b-e2dea463ea11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:20:31 GMT" + ], + "Content-Length": [ + "28446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\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 },\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\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"hostName\": \"test\",\r\n \"pickHostNameFromBackendAddress\": false,\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\",\r\n \"requestTimeout\": 42\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"https://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostNames\": [\r\n \"TestHostName\"\r\n ],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c87c1f8-8c83-4ffd-aeb3-1804ee3b7738" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\"" + ], + "x-ms-request-id": [ + "9e8495bc-0f3c-4f79-827f-eb480f07c418" + ], + "x-ms-correlation-request-id": [ + "74907fdc-aab9-48fa-a07b-f24a2edc12bb" + ], + "x-ms-arm-service-request-id": [ + "e8d462fe-a8f4-4944-8492-f4ecadfb25e2" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102031Z:74907fdc-aab9-48fa-a07b-f24a2edc12bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:20:31 GMT" + ], + "Content-Length": [ + "28446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\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 },\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\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"hostName\": \"test\",\r\n \"pickHostNameFromBackendAddress\": false,\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\",\r\n \"requestTimeout\": 42\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"https://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostNames\": [\r\n \"TestHostName\"\r\n ],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "083c30ec-7cdd-495e-ab0a-d1b1fffd9050" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\"" + ], + "x-ms-request-id": [ + "1208c6ee-9d5b-49a7-868b-66024380a809" + ], + "x-ms-correlation-request-id": [ + "12ff2582-1239-4c32-a0c1-f1c53ed5d9fc" + ], + "x-ms-arm-service-request-id": [ + "4881a5c6-970f-4254-8d7e-788e77d8f993" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102032Z:12ff2582-1239-4c32-a0c1-f1c53ed5d9fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:20:31 GMT" + ], + "Content-Length": [ + "28446" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\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 },\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\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"hostName\": \"test\",\r\n \"pickHostNameFromBackendAddress\": false,\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\",\r\n \"requestTimeout\": 42\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"https://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostNames\": [\r\n \"TestHostName\"\r\n ],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"0a3a73a3-76bf-4b5c-bcd9-44dc6e491854\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\"" + ], + "x-ms-request-id": [ + "df33ed6d-4c88-41c7-963b-de146e2ec29e" + ], + "x-ms-correlation-request-id": [ + "686ff52c-8b71-4dc5-838b-3f95e1bbc3ac" + ], + "x-ms-arm-service-request-id": [ + "1665cdf9-a616-451b-9988-0ba3f8e7b997" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102107Z:686ff52c-8b71-4dc5-838b-3f95e1bbc3ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:21:07 GMT" + ], + "Content-Length": [ + "29305" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDXTCCAkWgAwIBAgIJAP4WRAGKP3raMA0GCSqGSIb3DQEBCwUAMEUxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTgxMTA2MDczNTU4WhcNMjgxMTAzMDczNTU4WjBFMQswCQYDVQQGEwJVUzETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAngH7nurifsefZWeL7oC/I4IZwcsYfrq0rflditQULdnh+RYLHFXWBsa+RRTguyPhpeKLPdh8n5w9VUJSpgNv2g+JVQWFpGnFeeslLajA+GoeZLq8IHjE9lHbX7vfSNAvAzEpYQpCjMtS74OYDwXUrFybtTbKRnH/hZucPjw2Z6h1twde4lYzJWzWQ/VRvRH+GHEN1OL8KOscVqsHVOMWZsFSVYYfyj8lncWwE8gLSvqn4fjJWtKateyRwPHf+zILe2iFhZ9Iv93Di6UxABMdXJx/2BgENKtJMIii/iIrC46wjLqhxPHuEGfJx6eTY7W60cWTqIsuDyuQtDE/2hfX8wIDAQABo1AwTjAdBgNVHQ4EFgQUAeTs4eJlv6XbBdZbUeaH5Heb5S0wHwYDVR0jBBgwFoAUAeTs4eJlv6XbBdZbUeaH5Heb5S0wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAGmW3m3+ttIpAk6FwuzRLstWXBSejLEEB4NiL3ibuDOt7Wx1h8Qy5SzafyxcenYqF280qhOuy0aJezsUMf4pQjgWmL4WLUHNFjtG3u1XkMJk6pgguIWyDEgdFhQJAi0P0L+2atyQbECNyGXwDJRvtiGFBjpOBQthIjmvBj0yImLfuCwfdGgP8kvHvE84lKkyUZ9vOqiuyXSrIz1K7CfzeL5VbRdiORCZyClG+DCxPB6SeNXZgZqPYXw/niJbSA+DzG1vJfjwsv/+0UrZGvAjwcSGHs4TFmfHDPYR5Hgzm5Dq1d7OSOtPqLzkHzAA3MNoL3Wk7gfDTH0VtBVbYhshqwQ==\"\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\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"hostName\": \"test\",\r\n \"pickHostNameFromBackendAddress\": false,\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\",\r\n \"requestTimeout\": 42\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ],\r\n \"exclusions\": [\r\n {\r\n \"matchVariable\": \"RequestHeaderNames\",\r\n \"selectorMatchOperator\": \"StartsWith\",\r\n \"selector\": \"xyz\"\r\n },\r\n {\r\n \"matchVariable\": \"RequestArgNames\",\r\n \"selectorMatchOperator\": \"Equals\",\r\n \"selector\": \"a\"\r\n }\r\n ],\r\n \"requestBodyCheck\": true,\r\n \"maxRequestBodySizeInKb\": 80,\r\n \"fileUploadLimitInMb\": 70\r\n },\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee020ad2-dbf1-46f5-8c0f-588c5e62a24e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\"" + ], + "x-ms-request-id": [ + "445b2488-9053-4c44-872a-c6c8304298d9" + ], + "x-ms-correlation-request-id": [ + "56f2437a-d370-4701-8ff2-debec80e7e60" + ], + "x-ms-arm-service-request-id": [ + "4c8f1cb4-858e-4803-a921-3bfedb4897ed" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102107Z:56f2437a-d370-4701-8ff2-debec80e7e60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:21:07 GMT" + ], + "Content-Length": [ + "29305" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDXTCCAkWgAwIBAgIJAP4WRAGKP3raMA0GCSqGSIb3DQEBCwUAMEUxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTgxMTA2MDczNTU4WhcNMjgxMTAzMDczNTU4WjBFMQswCQYDVQQGEwJVUzETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAngH7nurifsefZWeL7oC/I4IZwcsYfrq0rflditQULdnh+RYLHFXWBsa+RRTguyPhpeKLPdh8n5w9VUJSpgNv2g+JVQWFpGnFeeslLajA+GoeZLq8IHjE9lHbX7vfSNAvAzEpYQpCjMtS74OYDwXUrFybtTbKRnH/hZucPjw2Z6h1twde4lYzJWzWQ/VRvRH+GHEN1OL8KOscVqsHVOMWZsFSVYYfyj8lncWwE8gLSvqn4fjJWtKateyRwPHf+zILe2iFhZ9Iv93Di6UxABMdXJx/2BgENKtJMIii/iIrC46wjLqhxPHuEGfJx6eTY7W60cWTqIsuDyuQtDE/2hfX8wIDAQABo1AwTjAdBgNVHQ4EFgQUAeTs4eJlv6XbBdZbUeaH5Heb5S0wHwYDVR0jBBgwFoAUAeTs4eJlv6XbBdZbUeaH5Heb5S0wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAGmW3m3+ttIpAk6FwuzRLstWXBSejLEEB4NiL3ibuDOt7Wx1h8Qy5SzafyxcenYqF280qhOuy0aJezsUMf4pQjgWmL4WLUHNFjtG3u1XkMJk6pgguIWyDEgdFhQJAi0P0L+2atyQbECNyGXwDJRvtiGFBjpOBQthIjmvBj0yImLfuCwfdGgP8kvHvE84lKkyUZ9vOqiuyXSrIz1K7CfzeL5VbRdiORCZyClG+DCxPB6SeNXZgZqPYXw/niJbSA+DzG1vJfjwsv/+0UrZGvAjwcSGHs4TFmfHDPYR5Hgzm5Dq1d7OSOtPqLzkHzAA3MNoL3Wk7gfDTH0VtBVbYhshqwQ==\"\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\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"hostName\": \"test\",\r\n \"pickHostNameFromBackendAddress\": false,\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\",\r\n \"requestTimeout\": 42\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ],\r\n \"exclusions\": [\r\n {\r\n \"matchVariable\": \"RequestHeaderNames\",\r\n \"selectorMatchOperator\": \"StartsWith\",\r\n \"selector\": \"xyz\"\r\n },\r\n {\r\n \"matchVariable\": \"RequestArgNames\",\r\n \"selectorMatchOperator\": \"Equals\",\r\n \"selector\": \"a\"\r\n }\r\n ],\r\n \"requestBodyCheck\": true,\r\n \"maxRequestBodySizeInKb\": 80,\r\n \"fileUploadLimitInMb\": 70\r\n },\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85ac0ff7-5fac-4fe7-897e-9bfec6069e75" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\"" + ], + "x-ms-request-id": [ + "8479d9d5-3b20-4dc4-bc98-0eb2c0f2a26a" + ], + "x-ms-correlation-request-id": [ + "4cd07572-ceb2-462c-adb7-d9eb302b6166" + ], + "x-ms-arm-service-request-id": [ + "122d40e0-b252-4417-b31e-c24428546831" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102108Z:4cd07572-ceb2-462c-adb7-d9eb302b6166" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:21:07 GMT" + ], + "Content-Length": [ + "29305" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDXTCCAkWgAwIBAgIJAP4WRAGKP3raMA0GCSqGSIb3DQEBCwUAMEUxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTgxMTA2MDczNTU4WhcNMjgxMTAzMDczNTU4WjBFMQswCQYDVQQGEwJVUzETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAngH7nurifsefZWeL7oC/I4IZwcsYfrq0rflditQULdnh+RYLHFXWBsa+RRTguyPhpeKLPdh8n5w9VUJSpgNv2g+JVQWFpGnFeeslLajA+GoeZLq8IHjE9lHbX7vfSNAvAzEpYQpCjMtS74OYDwXUrFybtTbKRnH/hZucPjw2Z6h1twde4lYzJWzWQ/VRvRH+GHEN1OL8KOscVqsHVOMWZsFSVYYfyj8lncWwE8gLSvqn4fjJWtKateyRwPHf+zILe2iFhZ9Iv93Di6UxABMdXJx/2BgENKtJMIii/iIrC46wjLqhxPHuEGfJx6eTY7W60cWTqIsuDyuQtDE/2hfX8wIDAQABo1AwTjAdBgNVHQ4EFgQUAeTs4eJlv6XbBdZbUeaH5Heb5S0wHwYDVR0jBBgwFoAUAeTs4eJlv6XbBdZbUeaH5Heb5S0wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAGmW3m3+ttIpAk6FwuzRLstWXBSejLEEB4NiL3ibuDOt7Wx1h8Qy5SzafyxcenYqF280qhOuy0aJezsUMf4pQjgWmL4WLUHNFjtG3u1XkMJk6pgguIWyDEgdFhQJAi0P0L+2atyQbECNyGXwDJRvtiGFBjpOBQthIjmvBj0yImLfuCwfdGgP8kvHvE84lKkyUZ9vOqiuyXSrIz1K7CfzeL5VbRdiORCZyClG+DCxPB6SeNXZgZqPYXw/niJbSA+DzG1vJfjwsv/+0UrZGvAjwcSGHs4TFmfHDPYR5Hgzm5Dq1d7OSOtPqLzkHzAA3MNoL3Wk7gfDTH0VtBVbYhshqwQ==\"\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\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"hostName\": \"test\",\r\n \"pickHostNameFromBackendAddress\": false,\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\",\r\n \"requestTimeout\": 42\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ],\r\n \"exclusions\": [\r\n {\r\n \"matchVariable\": \"RequestHeaderNames\",\r\n \"selectorMatchOperator\": \"StartsWith\",\r\n \"selector\": \"xyz\"\r\n },\r\n {\r\n \"matchVariable\": \"RequestArgNames\",\r\n \"selectorMatchOperator\": \"Equals\",\r\n \"selector\": \"a\"\r\n }\r\n ],\r\n \"requestBodyCheck\": true,\r\n \"maxRequestBodySizeInKb\": 80,\r\n \"fileUploadLimitInMb\": 70\r\n },\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "212a2022-af54-44c0-a967-5c8611180df8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\"" + ], + "x-ms-request-id": [ + "1b5d74b6-bfdd-4dbb-99c8-c628a0425021" + ], + "x-ms-correlation-request-id": [ + "a748c0cc-2acb-48d0-b448-8346cf88c5f4" + ], + "x-ms-arm-service-request-id": [ + "812d1b55-ec41-4322-8f6d-1f923b7e25f6" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102121Z:a748c0cc-2acb-48d0-b448-8346cf88c5f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:21:20 GMT" + ], + "Content-Length": [ + "29305" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDXTCCAkWgAwIBAgIJAP4WRAGKP3raMA0GCSqGSIb3DQEBCwUAMEUxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTgxMTA2MDczNTU4WhcNMjgxMTAzMDczNTU4WjBFMQswCQYDVQQGEwJVUzETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAngH7nurifsefZWeL7oC/I4IZwcsYfrq0rflditQULdnh+RYLHFXWBsa+RRTguyPhpeKLPdh8n5w9VUJSpgNv2g+JVQWFpGnFeeslLajA+GoeZLq8IHjE9lHbX7vfSNAvAzEpYQpCjMtS74OYDwXUrFybtTbKRnH/hZucPjw2Z6h1twde4lYzJWzWQ/VRvRH+GHEN1OL8KOscVqsHVOMWZsFSVYYfyj8lncWwE8gLSvqn4fjJWtKateyRwPHf+zILe2iFhZ9Iv93Di6UxABMdXJx/2BgENKtJMIii/iIrC46wjLqhxPHuEGfJx6eTY7W60cWTqIsuDyuQtDE/2hfX8wIDAQABo1AwTjAdBgNVHQ4EFgQUAeTs4eJlv6XbBdZbUeaH5Heb5S0wHwYDVR0jBBgwFoAUAeTs4eJlv6XbBdZbUeaH5Heb5S0wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAGmW3m3+ttIpAk6FwuzRLstWXBSejLEEB4NiL3ibuDOt7Wx1h8Qy5SzafyxcenYqF280qhOuy0aJezsUMf4pQjgWmL4WLUHNFjtG3u1XkMJk6pgguIWyDEgdFhQJAi0P0L+2atyQbECNyGXwDJRvtiGFBjpOBQthIjmvBj0yImLfuCwfdGgP8kvHvE84lKkyUZ9vOqiuyXSrIz1K7CfzeL5VbRdiORCZyClG+DCxPB6SeNXZgZqPYXw/niJbSA+DzG1vJfjwsv/+0UrZGvAjwcSGHs4TFmfHDPYR5Hgzm5Dq1d7OSOtPqLzkHzAA3MNoL3Wk7gfDTH0VtBVbYhshqwQ==\"\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\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"hostName\": \"test\",\r\n \"pickHostNameFromBackendAddress\": false,\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\",\r\n \"requestTimeout\": 42\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ],\r\n \"exclusions\": [\r\n {\r\n \"matchVariable\": \"RequestHeaderNames\",\r\n \"selectorMatchOperator\": \"StartsWith\",\r\n \"selector\": \"xyz\"\r\n },\r\n {\r\n \"matchVariable\": \"RequestArgNames\",\r\n \"selectorMatchOperator\": \"Equals\",\r\n \"selector\": \"a\"\r\n }\r\n ],\r\n \"requestBodyCheck\": true,\r\n \"maxRequestBodySizeInKb\": 80,\r\n \"fileUploadLimitInMb\": 70\r\n },\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"14a87782-de30-4a48-ae3c-4047691b594a\"" + ], + "x-ms-request-id": [ + "b4ecc028-09bb-45b6-81df-c99f55890294" + ], + "x-ms-correlation-request-id": [ + "692aad77-fdbc-48ff-9f95-1d0367bf50d2" + ], + "x-ms-arm-service-request-id": [ + "1c783cf2-152e-45d2-9afb-201768da6c56" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102126Z:692aad77-fdbc-48ff-9f95-1d0367bf50d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:21:26 GMT" + ], + "Content-Length": [ + "29305" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDXTCCAkWgAwIBAgIJAP4WRAGKP3raMA0GCSqGSIb3DQEBCwUAMEUxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTgxMTA2MDczNTU4WhcNMjgxMTAzMDczNTU4WjBFMQswCQYDVQQGEwJVUzETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAngH7nurifsefZWeL7oC/I4IZwcsYfrq0rflditQULdnh+RYLHFXWBsa+RRTguyPhpeKLPdh8n5w9VUJSpgNv2g+JVQWFpGnFeeslLajA+GoeZLq8IHjE9lHbX7vfSNAvAzEpYQpCjMtS74OYDwXUrFybtTbKRnH/hZucPjw2Z6h1twde4lYzJWzWQ/VRvRH+GHEN1OL8KOscVqsHVOMWZsFSVYYfyj8lncWwE8gLSvqn4fjJWtKateyRwPHf+zILe2iFhZ9Iv93Di6UxABMdXJx/2BgENKtJMIii/iIrC46wjLqhxPHuEGfJx6eTY7W60cWTqIsuDyuQtDE/2hfX8wIDAQABo1AwTjAdBgNVHQ4EFgQUAeTs4eJlv6XbBdZbUeaH5Heb5S0wHwYDVR0jBBgwFoAUAeTs4eJlv6XbBdZbUeaH5Heb5S0wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAGmW3m3+ttIpAk6FwuzRLstWXBSejLEEB4NiL3ibuDOt7Wx1h8Qy5SzafyxcenYqF280qhOuy0aJezsUMf4pQjgWmL4WLUHNFjtG3u1XkMJk6pgguIWyDEgdFhQJAi0P0L+2atyQbECNyGXwDJRvtiGFBjpOBQthIjmvBj0yImLfuCwfdGgP8kvHvE84lKkyUZ9vOqiuyXSrIz1K7CfzeL5VbRdiORCZyClG+DCxPB6SeNXZgZqPYXw/niJbSA+DzG1vJfjwsv/+0UrZGvAjwcSGHs4TFmfHDPYR5Hgzm5Dq1d7OSOtPqLzkHzAA3MNoL3Wk7gfDTH0VtBVbYhshqwQ==\"\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\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"hostName\": \"test\",\r\n \"pickHostNameFromBackendAddress\": false,\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\",\r\n \"requestTimeout\": 42\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ],\r\n \"exclusions\": [\r\n {\r\n \"matchVariable\": \"RequestHeaderNames\",\r\n \"selectorMatchOperator\": \"StartsWith\",\r\n \"selector\": \"xyz\"\r\n },\r\n {\r\n \"matchVariable\": \"RequestArgNames\",\r\n \"selectorMatchOperator\": \"Equals\",\r\n \"selector\": \"a\"\r\n }\r\n ],\r\n \"requestBodyCheck\": true,\r\n \"maxRequestBodySizeInKb\": 80,\r\n \"fileUploadLimitInMb\": 70\r\n },\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8240f1fd-f6e8-4a26-8fcd-70e72a06a69b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"14a87782-de30-4a48-ae3c-4047691b594a\"" + ], + "x-ms-request-id": [ + "c513f326-ad00-4a5c-9fc5-6977121fdfcd" + ], + "x-ms-correlation-request-id": [ + "d4a38785-84c9-4ab6-9146-57821c6973e9" + ], + "x-ms-arm-service-request-id": [ + "95041748-6abc-4901-a614-f5da9fac8f12" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102126Z:d4a38785-84c9-4ab6-9146-57821c6973e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:21:26 GMT" + ], + "Content-Length": [ + "29305" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDXTCCAkWgAwIBAgIJAP4WRAGKP3raMA0GCSqGSIb3DQEBCwUAMEUxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTgxMTA2MDczNTU4WhcNMjgxMTAzMDczNTU4WjBFMQswCQYDVQQGEwJVUzETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAngH7nurifsefZWeL7oC/I4IZwcsYfrq0rflditQULdnh+RYLHFXWBsa+RRTguyPhpeKLPdh8n5w9VUJSpgNv2g+JVQWFpGnFeeslLajA+GoeZLq8IHjE9lHbX7vfSNAvAzEpYQpCjMtS74OYDwXUrFybtTbKRnH/hZucPjw2Z6h1twde4lYzJWzWQ/VRvRH+GHEN1OL8KOscVqsHVOMWZsFSVYYfyj8lncWwE8gLSvqn4fjJWtKateyRwPHf+zILe2iFhZ9Iv93Di6UxABMdXJx/2BgENKtJMIii/iIrC46wjLqhxPHuEGfJx6eTY7W60cWTqIsuDyuQtDE/2hfX8wIDAQABo1AwTjAdBgNVHQ4EFgQUAeTs4eJlv6XbBdZbUeaH5Heb5S0wHwYDVR0jBBgwFoAUAeTs4eJlv6XbBdZbUeaH5Heb5S0wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAGmW3m3+ttIpAk6FwuzRLstWXBSejLEEB4NiL3ibuDOt7Wx1h8Qy5SzafyxcenYqF280qhOuy0aJezsUMf4pQjgWmL4WLUHNFjtG3u1XkMJk6pgguIWyDEgdFhQJAi0P0L+2atyQbECNyGXwDJRvtiGFBjpOBQthIjmvBj0yImLfuCwfdGgP8kvHvE84lKkyUZ9vOqiuyXSrIz1K7CfzeL5VbRdiORCZyClG+DCxPB6SeNXZgZqPYXw/niJbSA+DzG1vJfjwsv/+0UrZGvAjwcSGHs4TFmfHDPYR5Hgzm5Dq1d7OSOtPqLzkHzAA3MNoL3Wk7gfDTH0VtBVbYhshqwQ==\"\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\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"hostName\": \"test\",\r\n \"pickHostNameFromBackendAddress\": false,\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\",\r\n \"requestTimeout\": 42\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ],\r\n \"exclusions\": [\r\n {\r\n \"matchVariable\": \"RequestHeaderNames\",\r\n \"selectorMatchOperator\": \"StartsWith\",\r\n \"selector\": \"xyz\"\r\n },\r\n {\r\n \"matchVariable\": \"RequestArgNames\",\r\n \"selectorMatchOperator\": \"Equals\",\r\n \"selector\": \"a\"\r\n }\r\n ],\r\n \"requestBodyCheck\": true,\r\n \"maxRequestBodySizeInKb\": 80,\r\n \"fileUploadLimitInMb\": 70\r\n },\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17c34d3f-6fa8-4734-bdec-de352ffd0b73" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"14a87782-de30-4a48-ae3c-4047691b594a\"" + ], + "x-ms-request-id": [ + "cca57fda-93c7-41c8-a2f5-44a62b7c106d" + ], + "x-ms-correlation-request-id": [ + "8e1247ef-bac9-4bad-af2e-8657167ae003" + ], + "x-ms-arm-service-request-id": [ + "d71b0efe-c4a8-4139-8698-3dc6262e26c3" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102127Z:8e1247ef-bac9-4bad-af2e-8657167ae003" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:21:26 GMT" + ], + "Content-Length": [ + "29305" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDXTCCAkWgAwIBAgIJAP4WRAGKP3raMA0GCSqGSIb3DQEBCwUAMEUxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTgxMTA2MDczNTU4WhcNMjgxMTAzMDczNTU4WjBFMQswCQYDVQQGEwJVUzETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAngH7nurifsefZWeL7oC/I4IZwcsYfrq0rflditQULdnh+RYLHFXWBsa+RRTguyPhpeKLPdh8n5w9VUJSpgNv2g+JVQWFpGnFeeslLajA+GoeZLq8IHjE9lHbX7vfSNAvAzEpYQpCjMtS74OYDwXUrFybtTbKRnH/hZucPjw2Z6h1twde4lYzJWzWQ/VRvRH+GHEN1OL8KOscVqsHVOMWZsFSVYYfyj8lncWwE8gLSvqn4fjJWtKateyRwPHf+zILe2iFhZ9Iv93Di6UxABMdXJx/2BgENKtJMIii/iIrC46wjLqhxPHuEGfJx6eTY7W60cWTqIsuDyuQtDE/2hfX8wIDAQABo1AwTjAdBgNVHQ4EFgQUAeTs4eJlv6XbBdZbUeaH5Heb5S0wHwYDVR0jBBgwFoAUAeTs4eJlv6XbBdZbUeaH5Heb5S0wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAGmW3m3+ttIpAk6FwuzRLstWXBSejLEEB4NiL3ibuDOt7Wx1h8Qy5SzafyxcenYqF280qhOuy0aJezsUMf4pQjgWmL4WLUHNFjtG3u1XkMJk6pgguIWyDEgdFhQJAi0P0L+2atyQbECNyGXwDJRvtiGFBjpOBQthIjmvBj0yImLfuCwfdGgP8kvHvE84lKkyUZ9vOqiuyXSrIz1K7CfzeL5VbRdiORCZyClG+DCxPB6SeNXZgZqPYXw/niJbSA+DzG1vJfjwsv/+0UrZGvAjwcSGHs4TFmfHDPYR5Hgzm5Dq1d7OSOtPqLzkHzAA3MNoL3Wk7gfDTH0VtBVbYhshqwQ==\"\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\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"hostName\": \"test\",\r\n \"pickHostNameFromBackendAddress\": false,\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\",\r\n \"requestTimeout\": 42\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ],\r\n \"exclusions\": [\r\n {\r\n \"matchVariable\": \"RequestHeaderNames\",\r\n \"selectorMatchOperator\": \"StartsWith\",\r\n \"selector\": \"xyz\"\r\n },\r\n {\r\n \"matchVariable\": \"RequestArgNames\",\r\n \"selectorMatchOperator\": \"Equals\",\r\n \"selector\": \"a\"\r\n }\r\n ],\r\n \"requestBodyCheck\": true,\r\n \"maxRequestBodySizeInKb\": 80,\r\n \"fileUploadLimitInMb\": 70\r\n },\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\"" + ], + "x-ms-request-id": [ + "3117c3e1-83b9-4c0d-b8b4-a788d53a3302" + ], + "x-ms-correlation-request-id": [ + "65f9bb1f-5a6b-4758-a1c8-635f827e6cef" + ], + "x-ms-arm-service-request-id": [ + "88b40b11-76bf-4bf2-8626-f50ec158f4c4" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102355Z:65f9bb1f-5a6b-4758-a1c8-635f827e6cef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:23:55 GMT" + ], + "Content-Length": [ + "23637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\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\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ],\r\n \"exclusions\": [\r\n {\r\n \"matchVariable\": \"RequestHeaderNames\",\r\n \"selectorMatchOperator\": \"StartsWith\",\r\n \"selector\": \"xyz\"\r\n },\r\n {\r\n \"matchVariable\": \"RequestArgNames\",\r\n \"selectorMatchOperator\": \"Equals\",\r\n \"selector\": \"a\"\r\n }\r\n ],\r\n \"requestBodyCheck\": true,\r\n \"maxRequestBodySizeInKb\": 80,\r\n \"fileUploadLimitInMb\": 70\r\n },\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ccf1340-f0bf-4949-a2b7-807bff988a44" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\"" + ], + "x-ms-request-id": [ + "43d8df1b-ffe9-49b5-a12b-ace3d0b01dd4" + ], + "x-ms-correlation-request-id": [ + "1e6c2a2c-4270-4d8c-8282-5a07f591885d" + ], + "x-ms-arm-service-request-id": [ + "c9d7a8b0-9ab8-46e0-af53-ff1e685e0299" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102356Z:1e6c2a2c-4270-4d8c-8282-5a07f591885d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:23:55 GMT" + ], + "Content-Length": [ + "23637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\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\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"12e6775c-5cbd-46a9-a44a-7c00a4edcff1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ],\r\n \"exclusions\": [\r\n {\r\n \"matchVariable\": \"RequestHeaderNames\",\r\n \"selectorMatchOperator\": \"StartsWith\",\r\n \"selector\": \"xyz\"\r\n },\r\n {\r\n \"matchVariable\": \"RequestArgNames\",\r\n \"selectorMatchOperator\": \"Equals\",\r\n \"selector\": \"a\"\r\n }\r\n ],\r\n \"requestBodyCheck\": true,\r\n \"maxRequestBodySizeInKb\": 80,\r\n \"fileUploadLimitInMb\": 70\r\n },\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIpConfigurations/ps3608\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"sslCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIK8QIBAzCCCq0GCSqGSIb3DQEHAaCCCp4EggqaMIIKljCCBg8GCSqGSIb3DQEHAaCCBgAEggX8MIIF+DCCBfQGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAgdE3kuZQ+Q3gICB9AEggTY5iAjhTBjltWxD0ssy9ry9anXUgD+FYCFjZzSeOf2O1x8Fp3wu3SG2bMArVOrkrh8oFzZbMnI0JS6vRTFyITlMUNXHWj5J+4Y4AI7rt/5Kg2agHzCp1ssiNtmHAD7+1zsLZ/xX+zT/oGByKRDmBvthKTX0bN1vugOv/bo3SXKaSriL/GIeLvcRovPXYIOFQw17GvykvYGG3X3MHQZJ4EpZwku9cyaleOpmlVRdABW1iW3kNU87N2/0cMzN2FRHrn9fNUfTvshnGob7jiHYXf3iu4ZE+ebAcVRlgWwGS9+kmkI3ueyWGDPDnoSr49PbpznIHt7OcNhWz19oBPVm7teN2uYVsah1DZEn1gMB1eEVldFKE1WKxtKSarX5+hgQ9YFkJhBUgNKZYAcCRXZ8/FmKgJyZjObUGRlSKoYDqyHvdpU6hu6f3puuffuEtiSHkGJzXG+H2bMWLf/Xu375u46/pWuggU150qkQ2w5WH4tLM1/TzLAhFSkBBnfsVd8xpDeUfzTRWLFIf38T/VzVuMPjWT1vKTc1eVg/FowF8MYQ2HIrecpatZEzscrmYzyuAygMg+BmjYaPrTXT1ysIMUyPDxyCdBB/qiWRJnoXshJNgk3WUgeRE8dLkjokJ5OQNr/5H/mye4wK2PHDcc4Z3wNAdgQfPGbloLOwAPSRzBWyqnkX7I4yzt5SZJpaN8blueSaRl6TRTqWdcQfmsMrCu/B8q834bNSyKdlfdaQPAl6FZpxa4GpmpasTjNOUtTp7FTypN37miA8mCVHQhecUHeYSNN9zdKo2M7UFDYqcBvor3GyemkjflgyZyXKDnKfRy8gE+4LlyEyLeUs2gOndiYRAC4t2FoBlwJJPoAyLmR3rfypI6yHLmq6/gAx4bxUPbUdYR8ty5CYFE6JHc+Zib3DZrEHJuGm7sz5Sb6+JHkr81riywAzBOdO9K6QZSZEkwWM3yyeMA1rcD3Emufin9vJwkLJdEb6201gq7xzyfdPAX2qhoql7W0PWqAXNu7CGSe3pqmvGsWuUTOEduPc0+sLzuzHxtIFxvhwlnzYLQFMae9DG1YbGK6V30U+eeU+hcGeV9Eo0uUaVg9tk6Ieek8AURaCb2ZSxJqaXSW2x5lM5qB0FD5pthWnr0wturf+S5PTNmJ4fKX/m6wP3FgaYOr8Y6su3G9rx8xLjDarKGqttnMybI7EHNlQB1oDMLpG228YU4fkcpg5pRUz/se6kheLu96xXLT5s1ZUG3qso5o7DubXHneWpCpmJaOqGWVNeaFhAJ87LLS031TPNv/3JyqAbcK6hzRRKOTZyt6tQXUkrwx7p+oVM3qhmWxNrmbfEoDIL3wquhEJriS+msJ374ZzinIkxxPktcqCKZ0o150lWGIRVNU0VDw2wklhU36WkwJHHbbbvyEr9i3/dK/OCgpv7xe5PkD/DGk8mfyqxhYzvBMDuThaQK15EBJLyboDRyo36HIJZdu8a73cq8lgB/ZZTkH3FHb3CfK3muwkgk4Dx7wyKvTJI/fv9ksdciKmqRHk7dljrjfgGjhFKfb6Pcofx4lvXYzrsvDRdVY++Y/8uyblqPc7Nrf1LYOdDfrbFNbKgjMgGnwSLBkJy0pJctRpFOrAl/7fCVUtiLgL2Tz8LKWUAG4gPFRVTGB4jANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBdBgkqhkiG9w0BCRQxUB5OAHQAZQAtADAAZQA0ADUAOQBhAGIAOQAtADQAZQAxADIALQA0ADYANwBlAC0AOQAzADAAMgAtADkAOQAxADMAZQA1ADIANgBiAGIAOAA5MF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAG8AZgB0AHcAYQByAGUAIABLAGUAeQAgAFMAdABvAHIAYQBnAGUAIABQAHIAbwB2AGkAZABlAHIwggR/BgkqhkiG9w0BBwagggRwMIIEbAIBADCCBGUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEDMA4ECJjGVvG7VKc7AgIH0ICCBDhxmvSH9oFtLTxtnHdzDjs9UOyaOhZiMG8Bi2SWCSfpaCnXT42b2OjNcYDSBnTLhjLP8LP1Ru1w6eHllxfGN3H+pmHPf8ZyiQ1R/fN99dgPO3SkbQQ8dyP/C1yXym8OSz8GXm89HwsXZHPthra54HD/J2J2zXJ8iz8Bnhl0HO/Pr8sINDNc52bhUdIvrXu49M94eq5Nl0vXUfpbH5LdAJRKn0KhoasGn+0wRHrZz7/x+GKYN/a7tDGXavZrL8snIroEPhESYAGKpUdbrZWm9uY7V+gO5lrlZqgmn3rw06fLS/UCGF6t3w7yVnta/nhmP3bNFI2i+/oiOtmKOKRFPrSBJyHKqXlMLJUuxGlqDiImcuFZMQGiZwg4LO1SS/PQTUgMtL/6rqfjVVBW3v009tenl+WFrBbvkQ8yLpcK6ib/L4o0CKdS0l8eM+TAYdUhBuDXkuN60CblM3WiJDsVEjqtlsM0sUMd89H5jJxaP2kmqQeTTp+lmUgCY9ebH+jgkIdKu6wGwkC3J2B9pHtxBPv7D3+uFwk2QPK1wTBG5Kjo6e6sbRVZfju8waCUM/do07Z5CLCblC3LGkhnBASLCgqBQv6d8NPhfSwliw49gMbD6gZE/G6gZCJZ9bEvvMH/wDFtTqxLDou/90t8pKtJ/7XDauKJ0c7bX4igF7BujjQi5FxCIqLLE8GhIQwQFbH9kqxL2JSW2Bl0PsYTMJ4ziFneTR0I4UpJ4LMd6jC/uaU0fDCWt9/+SXLm/45QWmltq8aC+mI6Frt3+5r91qTggv16kGlfVJkMPZqkAfscP3rovMQfz6I35dIGbMtMFaZJdph6rSIy6wwDg+aV5dgiX7SfxpmLlTqFE6fQLAHfHrljpegEVxwaXwQtc2439HEmnd0Al0mEzAXToN/x4gblwkUA1iM/peaMDjH+gLa2FUmjT/lkcY0lVmwO9PbQ9PEWGtr/pHyJUMF9SR2BXyljNAILq4+wH2mhmkb9B/wMj4DjoOsH7pAD80/xA+DwaMkBvB4HfFCuqrIZHak3OZGtWFfrZ1g3yrug3VZNSBUiUQ0mYdVG2+55SE8LiyFPaMBQJQQgm61BS4/QLFwYvWu0WS+XIsg5qjHIRHLc+g4K9rzmD7IJ7v/3NnVx3vqj180Lv2h8+EtpuXEfG4dDVZ5F4lm+7ZGou6mt55gJBlEiAJd7x0kPA3mbvbOgcEvOROQxIctXGwBYJiNHARqaN5wxRzRPyUFuu4jVa/EuqJlKGBIhfo5SO4Xn9RE7VFnxEwYUe2eB2vTMyi1N2ZIoJvtdkytSPkZq8edI82AxLKAj84uQAJaj85ZjOSwkQdoYaYmdGhAOdXkA6gZ8JEBMr7RtuZ6Z/zr0mtYK5Vfywu7Egf0uGrA0dPHKtaMeQHyu+X/ifmTeh94Oid1mqAZXYddn5g3+O9XIeAx7ByMwOzAfMAcGBSsOAwIaBBSbHl19sUa4PXDUWAUun0k2B24X6AQUEy9GeIad1/Q5vOq6Jcq0YG0n3VQCAgfQ\",\r\n \"password\": \"P@ssw0rd\"\r\n },\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n }\r\n },\r\n \"name\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIpConfigurations/ps9608\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443\r\n },\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1\r\n },\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\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 \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"pickHostNameFromBackendAddress\": true\r\n },\r\n \"name\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIpConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"hostnames\": []\r\n },\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"properties\": {\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"name\": \"ps2515\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n },\r\n {\r\n \"properties\": {\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"name\": \"ps2515\"\r\n },\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"name\": \"ps6356\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n },\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"properties\": {\r\n \"rewriteRules\": [\r\n {\r\n \"name\": \"ps712\",\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ]\r\n },\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"requestRoutingRules\": [],\r\n \"urlPathMaps\": [],\r\n \"pathRules\": []\r\n },\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "649972be-4467-43d7-8a71-8165e6d78413" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "14465" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d9c88c44-437d-4d7a-bb6f-37d05eeea96b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01" + ], + "x-ms-correlation-request-id": [ + "149846e3-e98e-4e9f-83ae-9b1e248132e5" + ], + "x-ms-arm-service-request-id": [ + "f43d667b-6c09-4f46-99cf-6cf93f9d7cf8" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101007Z:149846e3-e98e-4e9f-83ae-9b1e248132e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:10:07 GMT" + ], + "Content-Length": [ + "18644" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\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\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"9c69ae46-cae5-4d87-abb3-d5179fee88af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\"\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\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n }\r\n },\r\n \"name\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443\r\n },\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\"\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 \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"pickHostNameFromBackendAddress\": true\r\n },\r\n \"name\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 42,\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"hostName\": \"test\",\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\"\r\n },\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"https://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"hostnames\": []\r\n },\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"hostnames\": [\r\n \"TestHostName\"\r\n ]\r\n },\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"hostName\": \"TestName\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": [],\r\n \"hostnames\": []\r\n },\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"properties\": {\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n },\r\n {\r\n \"properties\": {\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n },\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"properties\": {\r\n \"rewriteRules\": [\r\n {\r\n \"name\": \"ps712\",\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ]\r\n },\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"requestRoutingRules\": [],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da3d1a2e-b33d-4545-8c81-47e3c6c26807" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "17885" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c8ed7664-b4c9-4897-9502-a20c0f4e60b2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01" + ], + "x-ms-correlation-request-id": [ + "6b7254fe-2896-45db-8cf2-9136db1714c6" + ], + "x-ms-arm-service-request-id": [ + "c43cfa12-1d43-446d-9523-8ea400016b98" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101400Z:6b7254fe-2896-45db-8cf2-9136db1714c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:13:59 GMT" + ], + "Content-Length": [ + "28422" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\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 },\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\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"hostName\": \"test\",\r\n \"pickHostNameFromBackendAddress\": false,\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\",\r\n \"requestTimeout\": 42\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"https://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostNames\": [\r\n \"TestHostName\"\r\n ],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"80d72612-fd12-4a1c-979c-f505955949b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDXTCCAkWgAwIBAgIJAP4WRAGKP3raMA0GCSqGSIb3DQEBCwUAMEUxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTgxMTA2MDczNTU4WhcNMjgxMTAzMDczNTU4WjBFMQswCQYDVQQGEwJVUzETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAngH7nurifsefZWeL7oC/I4IZwcsYfrq0rflditQULdnh+RYLHFXWBsa+RRTguyPhpeKLPdh8n5w9VUJSpgNv2g+JVQWFpGnFeeslLajA+GoeZLq8IHjE9lHbX7vfSNAvAzEpYQpCjMtS74OYDwXUrFybtTbKRnH/hZucPjw2Z6h1twde4lYzJWzWQ/VRvRH+GHEN1OL8KOscVqsHVOMWZsFSVYYfyj8lncWwE8gLSvqn4fjJWtKateyRwPHf+zILe2iFhZ9Iv93Di6UxABMdXJx/2BgENKtJMIii/iIrC46wjLqhxPHuEGfJx6eTY7W60cWTqIsuDyuQtDE/2hfX8wIDAQABo1AwTjAdBgNVHQ4EFgQUAeTs4eJlv6XbBdZbUeaH5Heb5S0wHwYDVR0jBBgwFoAUAeTs4eJlv6XbBdZbUeaH5Heb5S0wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAGmW3m3+ttIpAk6FwuzRLstWXBSejLEEB4NiL3ibuDOt7Wx1h8Qy5SzafyxcenYqF280qhOuy0aJezsUMf4pQjgWmL4WLUHNFjtG3u1XkMJk6pgguIWyDEgdFhQJAi0P0L+2atyQbECNyGXwDJRvtiGFBjpOBQthIjmvBj0yImLfuCwfdGgP8kvHvE84lKkyUZ9vOqiuyXSrIz1K7CfzeL5VbRdiORCZyClG+DCxPB6SeNXZgZqPYXw/niJbSA+DzG1vJfjwsv/+0UrZGvAjwcSGHs4TFmfHDPYR5Hgzm5Dq1d7OSOtPqLzkHzAA3MNoL3Wk7gfDTH0VtBVbYhshqwQ==\"\r\n },\r\n \"name\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n }\r\n },\r\n \"name\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443\r\n },\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\"\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 \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"pickHostNameFromBackendAddress\": true\r\n },\r\n \"name\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 42,\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"hostName\": \"test\",\r\n \"pickHostNameFromBackendAddress\": false,\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\"\r\n },\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"hostnames\": []\r\n },\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"hostnames\": []\r\n },\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"hostName\": \"TestName\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": [],\r\n \"hostnames\": []\r\n },\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"properties\": {\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n },\r\n {\r\n \"properties\": {\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n },\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"properties\": {\r\n \"rewriteRules\": [\r\n {\r\n \"name\": \"ps712\",\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ]\r\n },\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"requestRoutingRules\": [],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ],\r\n \"requestBodyCheck\": true,\r\n \"maxRequestBodySizeInKb\": 80,\r\n \"fileUploadLimitInMb\": 70,\r\n \"exclusions\": [\r\n {\r\n \"matchVariable\": \"RequestHeaderNames\",\r\n \"selectorMatchOperator\": \"StartsWith\",\r\n \"selector\": \"xyz\"\r\n },\r\n {\r\n \"matchVariable\": \"RequestArgNames\",\r\n \"selectorMatchOperator\": \"Equals\",\r\n \"selector\": \"a\"\r\n }\r\n ]\r\n },\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"customErrorConfigurations\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4728dda0-87ed-41a1-8300-9cc8e7debe57" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "18796" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c773aef0-5f5f-4284-b189-b84bfdc37cce" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c773aef0-5f5f-4284-b189-b84bfdc37cce?api-version=2019-11-01" + ], + "x-ms-correlation-request-id": [ + "2cfea5cc-16f5-49aa-8b6f-ccb800824955" + ], + "x-ms-arm-service-request-id": [ + "5e2e751a-5be0-43b3-a23a-5cde12ba3c88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102036Z:2cfea5cc-16f5-49aa-8b6f-ccb800824955" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:20:35 GMT" + ], + "Content-Length": [ + "29281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"data\": \"MIIDXTCCAkWgAwIBAgIJAP4WRAGKP3raMA0GCSqGSIb3DQEBCwUAMEUxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTgxMTA2MDczNTU4WhcNMjgxMTAzMDczNTU4WjBFMQswCQYDVQQGEwJVUzETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAngH7nurifsefZWeL7oC/I4IZwcsYfrq0rflditQULdnh+RYLHFXWBsa+RRTguyPhpeKLPdh8n5w9VUJSpgNv2g+JVQWFpGnFeeslLajA+GoeZLq8IHjE9lHbX7vfSNAvAzEpYQpCjMtS74OYDwXUrFybtTbKRnH/hZucPjw2Z6h1twde4lYzJWzWQ/VRvRH+GHEN1OL8KOscVqsHVOMWZsFSVYYfyj8lncWwE8gLSvqn4fjJWtKateyRwPHf+zILe2iFhZ9Iv93Di6UxABMdXJx/2BgENKtJMIii/iIrC46wjLqhxPHuEGfJx6eTY7W60cWTqIsuDyuQtDE/2hfX8wIDAQABo1AwTjAdBgNVHQ4EFgQUAeTs4eJlv6XbBdZbUeaH5Heb5S0wHwYDVR0jBBgwFoAUAeTs4eJlv6XbBdZbUeaH5Heb5S0wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAGmW3m3+ttIpAk6FwuzRLstWXBSejLEEB4NiL3ibuDOt7Wx1h8Qy5SzafyxcenYqF280qhOuy0aJezsUMf4pQjgWmL4WLUHNFjtG3u1XkMJk6pgguIWyDEgdFhQJAi0P0L+2atyQbECNyGXwDJRvtiGFBjpOBQthIjmvBj0yImLfuCwfdGgP8kvHvE84lKkyUZ9vOqiuyXSrIz1K7CfzeL5VbRdiORCZyClG+DCxPB6SeNXZgZqPYXw/niJbSA+DzG1vJfjwsv/+0UrZGvAjwcSGHs4TFmfHDPYR5Hgzm5Dq1d7OSOtPqLzkHzAA3MNoL3Wk7gfDTH0VtBVbYhshqwQ==\"\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\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"hostName\": \"test\",\r\n \"pickHostNameFromBackendAddress\": false,\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\",\r\n \"requestTimeout\": 42\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"9a0ef36c-cef1-4123-b3cd-f9e3dde0cb53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ],\r\n \"exclusions\": [\r\n {\r\n \"matchVariable\": \"RequestHeaderNames\",\r\n \"selectorMatchOperator\": \"StartsWith\",\r\n \"selector\": \"xyz\"\r\n },\r\n {\r\n \"matchVariable\": \"RequestArgNames\",\r\n \"selectorMatchOperator\": \"Equals\",\r\n \"selector\": \"a\"\r\n }\r\n ],\r\n \"requestBodyCheck\": true,\r\n \"maxRequestBodySizeInKb\": 80,\r\n \"fileUploadLimitInMb\": 70\r\n },\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDXTCCAkWgAwIBAgIJAP4WRAGKP3raMA0GCSqGSIb3DQEBCwUAMEUxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTgxMTA2MDczNTU4WhcNMjgxMTAzMDczNTU4WjBFMQswCQYDVQQGEwJVUzETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAngH7nurifsefZWeL7oC/I4IZwcsYfrq0rflditQULdnh+RYLHFXWBsa+RRTguyPhpeKLPdh8n5w9VUJSpgNv2g+JVQWFpGnFeeslLajA+GoeZLq8IHjE9lHbX7vfSNAvAzEpYQpCjMtS74OYDwXUrFybtTbKRnH/hZucPjw2Z6h1twde4lYzJWzWQ/VRvRH+GHEN1OL8KOscVqsHVOMWZsFSVYYfyj8lncWwE8gLSvqn4fjJWtKateyRwPHf+zILe2iFhZ9Iv93Di6UxABMdXJx/2BgENKtJMIii/iIrC46wjLqhxPHuEGfJx6eTY7W60cWTqIsuDyuQtDE/2hfX8wIDAQABo1AwTjAdBgNVHQ4EFgQUAeTs4eJlv6XbBdZbUeaH5Heb5S0wHwYDVR0jBBgwFoAUAeTs4eJlv6XbBdZbUeaH5Heb5S0wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAGmW3m3+ttIpAk6FwuzRLstWXBSejLEEB4NiL3ibuDOt7Wx1h8Qy5SzafyxcenYqF280qhOuy0aJezsUMf4pQjgWmL4WLUHNFjtG3u1XkMJk6pgguIWyDEgdFhQJAi0P0L+2atyQbECNyGXwDJRvtiGFBjpOBQthIjmvBj0yImLfuCwfdGgP8kvHvE84lKkyUZ9vOqiuyXSrIz1K7CfzeL5VbRdiORCZyClG+DCxPB6SeNXZgZqPYXw/niJbSA+DzG1vJfjwsv/+0UrZGvAjwcSGHs4TFmfHDPYR5Hgzm5Dq1d7OSOtPqLzkHzAA3MNoL3Wk7gfDTH0VtBVbYhshqwQ==\"\r\n },\r\n \"name\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n }\r\n },\r\n \"name\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443\r\n },\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\"\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 \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"pickHostNameFromBackendAddress\": true\r\n },\r\n \"name\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 42,\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"hostName\": \"test\",\r\n \"pickHostNameFromBackendAddress\": false,\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\"\r\n },\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"hostnames\": []\r\n },\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"hostnames\": []\r\n },\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"hostName\": \"TestName\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": [],\r\n \"hostnames\": []\r\n },\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"properties\": {\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n },\r\n {\r\n \"properties\": {\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n },\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"properties\": {\r\n \"rewriteRules\": [\r\n {\r\n \"name\": \"ps712\",\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ]\r\n },\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"requestRoutingRules\": [],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ],\r\n \"requestBodyCheck\": true,\r\n \"maxRequestBodySizeInKb\": 80,\r\n \"fileUploadLimitInMb\": 70,\r\n \"exclusions\": [\r\n {\r\n \"matchVariable\": \"RequestHeaderNames\",\r\n \"selectorMatchOperator\": \"StartsWith\",\r\n \"selector\": \"xyz\"\r\n },\r\n {\r\n \"matchVariable\": \"RequestArgNames\",\r\n \"selectorMatchOperator\": \"Equals\",\r\n \"selector\": \"a\"\r\n }\r\n ]\r\n },\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"customErrorConfigurations\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c4564e9-2670-46cd-8ae6-2ae8c736a6d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "18796" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "740b780e-9650-4b34-9244-7b183da4f8a5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/740b780e-9650-4b34-9244-7b183da4f8a5?api-version=2019-11-01" + ], + "x-ms-correlation-request-id": [ + "2e6cfc99-9a32-4f93-89fa-a7ba7cbf6eb3" + ], + "x-ms-arm-service-request-id": [ + "003ead1a-7a60-4404-939d-b0af54dec9fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102126Z:2e6cfc99-9a32-4f93-89fa-a7ba7cbf6eb3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:21:25 GMT" + ], + "Content-Length": [ + "29305" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [\r\n {\r\n \"name\": \"ps8522\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/trustedRootCertificates/ps8522\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDXTCCAkWgAwIBAgIJAP4WRAGKP3raMA0GCSqGSIb3DQEBCwUAMEUxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTgxMTA2MDczNTU4WhcNMjgxMTAzMDczNTU4WjBFMQswCQYDVQQGEwJVUzETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAngH7nurifsefZWeL7oC/I4IZwcsYfrq0rflditQULdnh+RYLHFXWBsa+RRTguyPhpeKLPdh8n5w9VUJSpgNv2g+JVQWFpGnFeeslLajA+GoeZLq8IHjE9lHbX7vfSNAvAzEpYQpCjMtS74OYDwXUrFybtTbKRnH/hZucPjw2Z6h1twde4lYzJWzWQ/VRvRH+GHEN1OL8KOscVqsHVOMWZsFSVYYfyj8lncWwE8gLSvqn4fjJWtKateyRwPHf+zILe2iFhZ9Iv93Di6UxABMdXJx/2BgENKtJMIii/iIrC46wjLqhxPHuEGfJx6eTY7W60cWTqIsuDyuQtDE/2hfX8wIDAQABo1AwTjAdBgNVHQ4EFgQUAeTs4eJlv6XbBdZbUeaH5Heb5S0wHwYDVR0jBBgwFoAUAeTs4eJlv6XbBdZbUeaH5Heb5S0wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAGmW3m3+ttIpAk6FwuzRLstWXBSejLEEB4NiL3ibuDOt7Wx1h8Qy5SzafyxcenYqF280qhOuy0aJezsUMf4pQjgWmL4WLUHNFjtG3u1XkMJk6pgguIWyDEgdFhQJAi0P0L+2atyQbECNyGXwDJRvtiGFBjpOBQthIjmvBj0yImLfuCwfdGgP8kvHvE84lKkyUZ9vOqiuyXSrIz1K7CfzeL5VbRdiORCZyClG+DCxPB6SeNXZgZqPYXw/niJbSA+DzG1vJfjwsv/+0UrZGvAjwcSGHs4TFmfHDPYR5Hgzm5Dq1d7OSOtPqLzkHzAA3MNoL3Wk7gfDTH0VtBVbYhshqwQ==\"\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\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"ps7364\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7364\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 1234,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"hostName\": \"test\",\r\n \"pickHostNameFromBackendAddress\": false,\r\n \"affinityCookieName\": \"test\",\r\n \"path\": \"/test\",\r\n \"requestTimeout\": 42\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps9594\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps2257\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2257\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps9594\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"14a87782-de30-4a48-ae3c-4047691b594a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ],\r\n \"exclusions\": [\r\n {\r\n \"matchVariable\": \"RequestHeaderNames\",\r\n \"selectorMatchOperator\": \"StartsWith\",\r\n \"selector\": \"xyz\"\r\n },\r\n {\r\n \"matchVariable\": \"RequestArgNames\",\r\n \"selectorMatchOperator\": \"Equals\",\r\n \"selector\": \"a\"\r\n }\r\n ],\r\n \"requestBodyCheck\": true,\r\n \"maxRequestBodySizeInKb\": 80,\r\n \"fileUploadLimitInMb\": 70\r\n },\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjg/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n }\r\n },\r\n \"name\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443\r\n },\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\"\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 \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"pickHostNameFromBackendAddress\": true\r\n },\r\n \"name\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"hostnames\": []\r\n },\r\n \"name\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"hostName\": \"TestName\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": [],\r\n \"hostnames\": []\r\n },\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"properties\": {\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n },\r\n {\r\n \"properties\": {\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n },\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"properties\": {\r\n \"rewriteRules\": [\r\n {\r\n \"name\": \"ps712\",\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ]\r\n },\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"requestRoutingRules\": [],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ],\r\n \"requestBodyCheck\": true,\r\n \"maxRequestBodySizeInKb\": 80,\r\n \"fileUploadLimitInMb\": 70,\r\n \"exclusions\": [\r\n {\r\n \"matchVariable\": \"RequestHeaderNames\",\r\n \"selectorMatchOperator\": \"StartsWith\",\r\n \"selector\": \"xyz\"\r\n },\r\n {\r\n \"matchVariable\": \"RequestArgNames\",\r\n \"selectorMatchOperator\": \"Equals\",\r\n \"selector\": \"a\"\r\n }\r\n ]\r\n },\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"customErrorConfigurations\": []\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"location\": \"westus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "756a538f-a3aa-469f-8cdc-2f35bbca2579" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "14923" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0b8fa9ef-7592-47de-800a-6734c9545e32" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0b8fa9ef-7592-47de-800a-6734c9545e32?api-version=2019-11-01" + ], + "x-ms-correlation-request-id": [ + "cf6101da-a955-4cc2-927d-b735b6214f3b" + ], + "x-ms-arm-service-request-id": [ + "1289ef7a-20c0-40a1-b56b-ab0e89480789" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102131Z:cf6101da-a955-4cc2-927d-b735b6214f3b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:21:30 GMT" + ], + "Content-Length": [ + "23617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9128\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"be5b7103-e692-47b4-9e8b-abd70827fc71\",\r\n \"sku\": {\r\n \"name\": \"WAF_v2\",\r\n \"tier\": \"WAF_v2\"\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ps3608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/gatewayIPConfigurations/ps3608\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/virtualNetworks/ps459/subnets/ps6245\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"ps1634\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIDogYJKoZIhvcNAQcCoIIDkzCCA48CAQExADALBgkqhkiG9w0BBwGgggN3MIIDczCCAlugAwIBAgIQL/k3jna6xZtLgV+mC9tPdzANBgkqhkiG9w0BAQsFADAxMS8wLQYDVQQDDCZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAgFw0xNzEwMzExNzA3MDBaGA8yMDU5MTAzMTE3MTcwMVowMTEvMC0GA1UEAwwmYXBwbGljYXRpb25nYXRld2F5LnBvd2Vyc2hlbGwudGVzdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0xGszrl4F07eN+7WaJhi+ETjDkXJSiTwi0E0qHwCzIFMFypeBGQOQ/nkwcbF/nBRbUQDrGjhaWwdJ0CNHaQ3caVFfNVLb2Wlc4CJazy0bSNyGOJjK4H9WWM+eo7k4jEMmGIp+H5GvovBilwTLK1JQwbrp/XdLgA8TDy8ZLk0LDw5A028QywI8+cRKmmHJoEwIZMMovsqwzAUclsbgKkuRaoF8OOFh9nsOXx9+ulhrqshrpikUsDSsyDhvFLnqVJBdjA1dJDnd8ctGgGXPxhy2SOhOJ/SSPUed0reengNnycBMsumTpW0p/VRgPk1eWRh37MRmxB6X3j5vkgvtt8Z5AgMBAAGjgYQwgYEwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAxBgNVHREEKjAogiZhcHBsaWNhdGlvbmdhdGV3YXkucG93ZXJzaGVsbC50ZXN0LmNvbTAdBgNVHQ4EFgQUCXYSgEunlkxbbGLEItZoAIuBWyUwDQYJKoZIhvcNAQELBQADggEBABYZecViOw7UQDGlc4Oy/sVmKbEF/a7XcOTiq95f39LQshc6ZhtkbvqUwzmGVP8S+DvrShI16F/Tkl/KBtUHG/e+l6GjIVbq1ygeTeAGy6BvNhDa41944Hd4A85X7YeD9qkQzHlAS8gBED1dTh3dXSVVdRZ5pcK0nxfNth3xQGTlfEFpPN6C6434YLQ5RvyYQGJkf3Amu8n8fWT40QIrsIPbbTdmXOl1I60NP7EPQp+9sHtdajZactzFJ2/ovOaK5JGRiX5RtRqz0hQT/6Benn7maD7Hz5bfOB8UmD4iR/QhWrcT+mCr1qS+ZFrD0bcEAi0NoJlSVFIB6rgUyE4CqxExAA==\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/sslCertificates\"\r\n }\r\n ],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps9608\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/publicIPAddresses/ps1050\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps8898\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps7274\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\"\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\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"ps3574\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps3574\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"fqdn\": \"www.bing.com\"\r\n },\r\n {\r\n \"fqdn\": \"www.microsoft.com\"\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\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\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\": \"ps4732\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps8898\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [\r\n {\r\n \"statusCode\": \"HttpStatus403\",\r\n \"customErrorPageUrl\": \"http://mycustomerrorpages.blob.core.windows.net/errorpages/403-another.htm\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"redirectConfiguration\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps3186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps3186\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendIPConfigurations/ps9608\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/frontendPorts/ps7274\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/sslCertificates/ps1634\"\r\n },\r\n \"hostName\": \"TestName\",\r\n \"hostNames\": [],\r\n \"requireServerNameIndication\": true,\r\n \"customErrorConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"name\": \"ps2226\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"ps8038\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"defaultRedirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"defaultRewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps2515\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n },\r\n {\r\n \"name\": \"ps6356\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"paths\": [\r\n \"/image\"\r\n ],\r\n \"redirectConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps/pathRules\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/urlPathMaps\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"ps2110\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps9118\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/probes/ps9118\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 89,\r\n \"timeout\": 88,\r\n \"unhealthyThreshold\": 8,\r\n \"pickHostNameFromBackendHttpSettings\": true,\r\n \"minServers\": 1,\r\n \"match\": {}\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/probes\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"name\": \"ps3030\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/rewriteRuleSets/ps3030\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"ps712\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [\r\n {\r\n \"headerName\": \"abc\",\r\n \"headerValue\": \"def\"\r\n }\r\n ],\r\n \"responseHeaderConfigurations\": []\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [\r\n {\r\n \"name\": \"ps266\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/redirectConfigurations/ps266\",\r\n \"etag\": \"W/\\\"369e50de-9447-4223-80af-076568c4680b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"redirectType\": \"Permanent\",\r\n \"targetListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/httpListeners/ps4732\"\r\n },\r\n \"includePath\": true,\r\n \"includeQueryString\": true,\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps2515\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps8038/pathRules/ps6356\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/redirectConfigurations\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ],\r\n \"exclusions\": [\r\n {\r\n \"matchVariable\": \"RequestHeaderNames\",\r\n \"selectorMatchOperator\": \"StartsWith\",\r\n \"selector\": \"xyz\"\r\n },\r\n {\r\n \"matchVariable\": \"RequestArgNames\",\r\n \"selectorMatchOperator\": \"Equals\",\r\n \"selector\": \"a\"\r\n }\r\n ],\r\n \"requestBodyCheck\": true,\r\n \"maxRequestBodySizeInKb\": 80,\r\n \"fileUploadLimitInMb\": 70\r\n },\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"customErrorConfigurations\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6cdfcc71-d9f6-44c6-9652-8ff2c55debbb" + ], + "x-ms-correlation-request-id": [ + "6810f6f3-d566-470d-a949-e48d6b61a674" + ], + "x-ms-arm-service-request-id": [ + "307bc9d6-0fc1-4fd9-b8d5-90dfd6a9a824" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101018Z:6810f6f3-d566-470d-a949-e48d6b61a674" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:10: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "907e0120-32a6-43a6-899a-30a9b2e01b02" + ], + "x-ms-correlation-request-id": [ + "39d6908d-307c-4881-93d5-585e8ef38d27" + ], + "x-ms-arm-service-request-id": [ + "3640e654-1892-485f-aa75-35347cc6e99c" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101028Z:39d6908d-307c-4881-93d5-585e8ef38d27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:10: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6068fee2-86bc-4d75-9624-98a3ed1de96b" + ], + "x-ms-correlation-request-id": [ + "428cd6ec-d761-4c3a-b017-9efdd81d76c2" + ], + "x-ms-arm-service-request-id": [ + "d6d63f8e-2f0c-48cd-bf67-97f9136d2075" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101038Z:428cd6ec-d761-4c3a-b017-9efdd81d76c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:10: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fc0cbecb-db65-437f-8f9a-6ba9d71a01ee" + ], + "x-ms-correlation-request-id": [ + "084b90b3-2065-48a6-bd73-6772bced0dfb" + ], + "x-ms-arm-service-request-id": [ + "6447d0f7-246d-47eb-8171-b95b3569c7d8" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101048Z:084b90b3-2065-48a6-bd73-6772bced0dfb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:10: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "35aead43-60a3-44eb-b77d-77ba508dadc7" + ], + "x-ms-correlation-request-id": [ + "4e26b21b-9a97-426f-95bd-02c03388fe6a" + ], + "x-ms-arm-service-request-id": [ + "91235799-b3fc-4d9a-86ce-d3b7f18d1534" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101059Z:4e26b21b-9a97-426f-95bd-02c03388fe6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:10: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7e512624-38b5-4840-bef2-3eb563888176" + ], + "x-ms-correlation-request-id": [ + "f5c7b8e8-10c8-4a66-bbb3-08c9dc44ecdd" + ], + "x-ms-arm-service-request-id": [ + "ac8e159b-e679-4408-bb4c-239ee3c54ee7" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101109Z:f5c7b8e8-10c8-4a66-bbb3-08c9dc44ecdd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:11: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a6268020-f585-4cd8-8038-34e9418fa5c0" + ], + "x-ms-correlation-request-id": [ + "2344d260-e0f5-4e7d-b235-6a491455efab" + ], + "x-ms-arm-service-request-id": [ + "b28d61d6-7152-4a0a-b3d2-69092ef994ff" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101119Z:2344d260-e0f5-4e7d-b235-6a491455efab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:11:19 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d3bb0bb6-430b-4c7e-af14-2ebe0051c435" + ], + "x-ms-correlation-request-id": [ + "ce3baeb7-fc0e-4e31-8a95-ffade65e89ca" + ], + "x-ms-arm-service-request-id": [ + "8d8536ff-adc9-43c0-b4da-2a98b1ecdd3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T101129Z:ce3baeb7-fc0e-4e31-8a95-ffade65e89ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:11: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "92d901ea-9296-4c45-b5e1-11e65ebae67d" + ], + "x-ms-correlation-request-id": [ + "3b51d84f-b221-49c4-a4c6-5796c77b40e2" + ], + "x-ms-arm-service-request-id": [ + "dcc619fa-0143-4985-b979-98b73670fb17" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101140Z:3b51d84f-b221-49c4-a4c6-5796c77b40e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:11: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9fb1c2e7-cea3-4a4e-aa39-a89b875ca083" + ], + "x-ms-correlation-request-id": [ + "3896a6b3-7790-4af4-a5e3-870785003345" + ], + "x-ms-arm-service-request-id": [ + "8bcb5673-d730-4029-aced-d22a4e65c307" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101150Z:3896a6b3-7790-4af4-a5e3-870785003345" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:11: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a738e62a-1f2c-40c2-93fe-ec66497933d0" + ], + "x-ms-correlation-request-id": [ + "92ebe8d2-1ae0-45ef-894d-8bbbc1256ff3" + ], + "x-ms-arm-service-request-id": [ + "72f5bb2c-03c9-4112-bce8-07fb4ac9dea2" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101201Z:92ebe8d2-1ae0-45ef-894d-8bbbc1256ff3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:12:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "542efff8-f377-4535-9075-5b258e38fab5" + ], + "x-ms-correlation-request-id": [ + "7b4da6a6-35ef-4bf2-ade8-69c3684789a1" + ], + "x-ms-arm-service-request-id": [ + "8473b3df-b089-44b7-86aa-1c7a939a1b6d" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101211Z:7b4da6a6-35ef-4bf2-ade8-69c3684789a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:12: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "95cfddbf-3a20-4094-b522-ce25a2e297a5" + ], + "x-ms-correlation-request-id": [ + "27d4b725-e4d8-4850-9b8f-d041b3636d4f" + ], + "x-ms-arm-service-request-id": [ + "da5db75d-400b-40cd-bebe-c2faf775a764" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101221Z:27d4b725-e4d8-4850-9b8f-d041b3636d4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:12: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b9d70bc6-e705-4f4f-b1ce-52e70a3451db" + ], + "x-ms-correlation-request-id": [ + "088174fd-ac89-42ef-898b-4356f506f5ee" + ], + "x-ms-arm-service-request-id": [ + "648b6806-9ef4-4a74-a7b6-db3d305bb1c8" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101231Z:088174fd-ac89-42ef-898b-4356f506f5ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:12: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "02d86ac0-bdad-45a1-a8f9-866db3c77c1b" + ], + "x-ms-correlation-request-id": [ + "66940550-335f-4da7-b5e1-b0460913beb7" + ], + "x-ms-arm-service-request-id": [ + "1936c91f-64cb-4d90-8079-92ec7eeb3937" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101241Z:66940550-335f-4da7-b5e1-b0460913beb7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:12: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "15719a39-75a4-45b0-bb9b-d462c4af771c" + ], + "x-ms-correlation-request-id": [ + "652b2fd3-ffb9-4022-bec9-bdaf7a429d9c" + ], + "x-ms-arm-service-request-id": [ + "45cb92ab-8a1a-4a36-aee9-aa38ba903661" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T101252Z:652b2fd3-ffb9-4022-bec9-bdaf7a429d9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:12: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "256b584c-b3e1-4f45-9035-5ffc272439ac" + ], + "x-ms-correlation-request-id": [ + "dc37251c-b172-4907-848d-707390d0a015" + ], + "x-ms-arm-service-request-id": [ + "23a1d3e4-c7e8-440b-89d4-f2b9c6549cf1" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101302Z:dc37251c-b172-4907-848d-707390d0a015" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:13:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2bc97be4-63ac-4933-9685-730680e55608" + ], + "x-ms-correlation-request-id": [ + "675ed7ee-1635-4e46-82c0-f270290a5d51" + ], + "x-ms-arm-service-request-id": [ + "4680857a-bc80-4035-93f6-5e243b47adb2" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101313Z:675ed7ee-1635-4e46-82c0-f270290a5d51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:13: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "56605977-534f-4f90-a09a-0a5d7d7d8e9b" + ], + "x-ms-correlation-request-id": [ + "bd0f4794-083c-4e26-ae03-0dce8e12cf69" + ], + "x-ms-arm-service-request-id": [ + "23c48550-11d9-43e8-8e64-6e9350911a7f" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101323Z:bd0f4794-083c-4e26-ae03-0dce8e12cf69" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:13:22 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "59294156-6876-46da-b35b-ae2a4e803f7d" + ], + "x-ms-correlation-request-id": [ + "2e257f19-0583-4cad-beb0-3bb6d47f2eb9" + ], + "x-ms-arm-service-request-id": [ + "99178882-c746-4d3b-882b-3056dfb122ac" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101333Z:2e257f19-0583-4cad-beb0-3bb6d47f2eb9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:13:32 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "67dbbd34-e8c5-422a-b8ee-fa77c11e3f93" + ], + "x-ms-correlation-request-id": [ + "b9c96eec-43f9-4fc2-9099-ed57b8ae2f05" + ], + "x-ms-arm-service-request-id": [ + "b63e1a71-cdcc-45e5-b6e5-47f5e71543ed" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101343Z:b9c96eec-43f9-4fc2-9099-ed57b8ae2f05" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:13:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/d9c88c44-437d-4d7a-bb6f-37d05eeea96b?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2Q5Yzg4YzQ0LTQzN2QtNGQ3YS1iYjZmLTM3ZDA1ZWVlYTk2Yj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f472ec98-0a48-4ca2-8a95-08a05b712603" + ], + "x-ms-correlation-request-id": [ + "1a4288da-0793-4945-8352-36f69f08ef9d" + ], + "x-ms-arm-service-request-id": [ + "74bb73c0-9fe5-46e6-95e5-89e7d41049d3" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101354Z:1a4288da-0793-4945-8352-36f69f08ef9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:13:53 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b390facb-124a-4f30-944d-67323676d21f" + ], + "x-ms-correlation-request-id": [ + "18a5a318-a5d2-409d-8a2a-01014512cef5" + ], + "x-ms-arm-service-request-id": [ + "055d8af8-f9b4-4ada-bb4e-aaa25b6df3bc" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101410Z:18a5a318-a5d2-409d-8a2a-01014512cef5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:14: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "54c95f2f-86d5-4e94-9d99-9fec07e010ab" + ], + "x-ms-correlation-request-id": [ + "828d0999-89e0-46e1-b982-8b262e704472" + ], + "x-ms-arm-service-request-id": [ + "5c10a27d-7f00-4cff-81fb-bc1009cea87d" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101421Z:828d0999-89e0-46e1-b982-8b262e704472" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:14: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e0a77f81-115f-400e-bd90-645174018c71" + ], + "x-ms-correlation-request-id": [ + "f565b3aa-f537-4620-a0dd-66d7e471cc44" + ], + "x-ms-arm-service-request-id": [ + "1ba9f33f-8b1b-4e5c-9db3-7efc26c3463d" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101431Z:f565b3aa-f537-4620-a0dd-66d7e471cc44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:14: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "60ba39fa-0ef7-472d-ba77-4efbdac7048d" + ], + "x-ms-correlation-request-id": [ + "9dfb67b6-d162-43e7-8b34-0c2e365dd9b5" + ], + "x-ms-arm-service-request-id": [ + "21464bc0-6091-40f8-a73b-1c883ab72b4e" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101441Z:9dfb67b6-d162-43e7-8b34-0c2e365dd9b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:14: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7ea20116-aa14-46a2-b41c-d1f5e4d8ebc3" + ], + "x-ms-correlation-request-id": [ + "c9c9fa5d-4961-4581-ad6b-6058e66d0795" + ], + "x-ms-arm-service-request-id": [ + "356e20ed-d051-42ba-9d5a-191e4e56713c" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101451Z:c9c9fa5d-4961-4581-ad6b-6058e66d0795" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:14: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "aad20394-a201-415d-a034-a38ed157dcb2" + ], + "x-ms-correlation-request-id": [ + "97728e20-064e-4621-bed3-d07384b9ac77" + ], + "x-ms-arm-service-request-id": [ + "ff78f340-a8a5-4f38-8f45-29eab2779036" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101501Z:97728e20-064e-4621-bed3-d07384b9ac77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:15: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8d192893-0846-4233-b23a-ef69ae59cc2f" + ], + "x-ms-correlation-request-id": [ + "74b9c70c-a6fd-4f33-859d-ee2db9aa3cfa" + ], + "x-ms-arm-service-request-id": [ + "b01ef4c7-036a-4f76-83bc-c942c445a941" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101512Z:74b9c70c-a6fd-4f33-859d-ee2db9aa3cfa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:15: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "276ca3b1-1c4a-43be-8b5f-a928c0e3bd94" + ], + "x-ms-correlation-request-id": [ + "ece40f16-fb69-47ad-9b52-0f45bd689125" + ], + "x-ms-arm-service-request-id": [ + "8cf09e4f-0e27-4e73-a923-3a007654641f" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101522Z:ece40f16-fb69-47ad-9b52-0f45bd689125" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:15:22 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "358c4581-aefd-4733-a44e-858ec839b142" + ], + "x-ms-correlation-request-id": [ + "538fecb5-0fd9-44d0-90ce-3e3d4e5decd7" + ], + "x-ms-arm-service-request-id": [ + "c4631d44-d009-44c0-9935-2be6963596f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T101532Z:538fecb5-0fd9-44d0-90ce-3e3d4e5decd7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:15:32 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ef806cb3-4761-45ac-8ef6-88429043d5f4" + ], + "x-ms-correlation-request-id": [ + "0cf1eca4-7654-4b25-8daa-21a0c60bf4c9" + ], + "x-ms-arm-service-request-id": [ + "03cdbb27-e170-4024-a54b-b7ddfed4e606" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101543Z:0cf1eca4-7654-4b25-8daa-21a0c60bf4c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:15:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1e963f20-b737-4f5b-b280-c2cc37aeafd5" + ], + "x-ms-correlation-request-id": [ + "39168bd4-899e-4e0d-8fbd-e865c3f69a55" + ], + "x-ms-arm-service-request-id": [ + "3a8d3273-a820-4ea9-a7ee-a3e457730c63" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101553Z:39168bd4-899e-4e0d-8fbd-e865c3f69a55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:15:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "087c4603-bf53-49ba-9f44-56a4f9711ae8" + ], + "x-ms-correlation-request-id": [ + "21a6fd69-1b6b-41a6-85cc-7384e2ef4737" + ], + "x-ms-arm-service-request-id": [ + "9e009cc8-9014-4742-95bd-7a0748727873" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101603Z:21a6fd69-1b6b-41a6-85cc-7384e2ef4737" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:16:03 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6f3540b2-39e3-48c2-8611-77d04bf9e61a" + ], + "x-ms-correlation-request-id": [ + "315c2ae8-89cd-4731-8303-d057e18cb932" + ], + "x-ms-arm-service-request-id": [ + "6c28cff3-3151-43ca-ab55-e00dfa48b846" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101614Z:315c2ae8-89cd-4731-8303-d057e18cb932" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:16:13 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3ee48c21-4611-4a32-b197-06ab67063e2f" + ], + "x-ms-correlation-request-id": [ + "a10b135c-1c78-4cfc-b4ca-7b9ffbb97207" + ], + "x-ms-arm-service-request-id": [ + "85b70c0f-81d2-4922-984a-50b0ce8f9a18" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101624Z:a10b135c-1c78-4cfc-b4ca-7b9ffbb97207" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:16:23 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "95e076eb-09d3-42cc-aae5-5b4340b7862e" + ], + "x-ms-correlation-request-id": [ + "5424f3f3-2692-4a3d-87dc-deb4fb6ea7ba" + ], + "x-ms-arm-service-request-id": [ + "1aecd313-8715-4d52-ba48-ec10627d7570" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101634Z:5424f3f3-2692-4a3d-87dc-deb4fb6ea7ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:16: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bfe6e5cf-83af-4942-8901-7e716722cb3f" + ], + "x-ms-correlation-request-id": [ + "facdec50-bf84-4120-afb3-65d3e568950f" + ], + "x-ms-arm-service-request-id": [ + "f82c7f16-0b02-4f85-b9e0-b593089688dd" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101644Z:facdec50-bf84-4120-afb3-65d3e568950f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:16: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1452675f-d803-4874-b310-0f659196060e" + ], + "x-ms-correlation-request-id": [ + "d8221370-41be-4a8c-999d-272b3ca3b75d" + ], + "x-ms-arm-service-request-id": [ + "7a1a768b-6da0-40d8-97bf-094b004a9853" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101654Z:d8221370-41be-4a8c-999d-272b3ca3b75d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:16: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "34fb75ed-87ea-449d-894c-f7e86336dd5c" + ], + "x-ms-correlation-request-id": [ + "ffcfdd69-a1f6-4f00-a1cf-5b397ec9a30a" + ], + "x-ms-arm-service-request-id": [ + "2472c3bf-850a-4d78-9aad-cb5d35e1b2fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T101705Z:ffcfdd69-a1f6-4f00-a1cf-5b397ec9a30a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:17: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "433be731-e533-4f1a-9e8b-05a14e2d718b" + ], + "x-ms-correlation-request-id": [ + "d249f8ea-f24b-4ac0-96ea-d02848f6e0ee" + ], + "x-ms-arm-service-request-id": [ + "d246afff-a47c-4230-ab5d-8def82cf77fb" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101715Z:d249f8ea-f24b-4ac0-96ea-d02848f6e0ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:17: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e80c15b5-8fe4-4b69-923e-5569a53a62a8" + ], + "x-ms-correlation-request-id": [ + "b6acacd4-7131-4d00-84b4-96ec82ce74b0" + ], + "x-ms-arm-service-request-id": [ + "74b9a964-bee5-4ecf-aef1-8eb271a336e6" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101726Z:b6acacd4-7131-4d00-84b4-96ec82ce74b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:17: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "85d4310a-de6f-48f9-9168-a272069b48d2" + ], + "x-ms-correlation-request-id": [ + "633495a0-a15c-4b62-b887-d7d39fadd6ef" + ], + "x-ms-arm-service-request-id": [ + "22b882d0-de06-4e09-bab6-01760f50945c" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101736Z:633495a0-a15c-4b62-b887-d7d39fadd6ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:17: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cf867d32-aef8-4caf-9671-e593e535e668" + ], + "x-ms-correlation-request-id": [ + "d881feea-14b2-4e5a-928d-f2b6133c39df" + ], + "x-ms-arm-service-request-id": [ + "24bc5580-d299-4b2c-8867-f5801d65528c" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101746Z:d881feea-14b2-4e5a-928d-f2b6133c39df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:17: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "68edc64c-38a0-433b-8394-b1daf283a513" + ], + "x-ms-correlation-request-id": [ + "f2e69613-e4d2-4b2d-bac6-3bf0aec760aa" + ], + "x-ms-arm-service-request-id": [ + "1c9f6687-fc6d-4698-b2a1-7891955339ce" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101756Z:f2e69613-e4d2-4b2d-bac6-3bf0aec760aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:17: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7d5cc1f3-f699-4f23-b5b0-00eae72bed75" + ], + "x-ms-correlation-request-id": [ + "92ee72d5-9567-432f-aa26-633995b8f44d" + ], + "x-ms-arm-service-request-id": [ + "59a76d83-f796-4af1-bd55-0d3a322c599e" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101807Z:92ee72d5-9567-432f-aa26-633995b8f44d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:18: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7a979421-c71c-4084-90e0-4a116405fb41" + ], + "x-ms-correlation-request-id": [ + "99a414d3-296e-44d6-b7d2-33a54c6b8676" + ], + "x-ms-arm-service-request-id": [ + "26c6158b-3839-4970-a24c-0ba7cd285191" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101817Z:99a414d3-296e-44d6-b7d2-33a54c6b8676" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:18: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3e45856b-6c4a-480f-9db5-91f501ce3381" + ], + "x-ms-correlation-request-id": [ + "3a0305ea-1683-4636-898c-7c844129ffda" + ], + "x-ms-arm-service-request-id": [ + "e5a7d7c2-fcaa-4331-869b-481e1e630ba1" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101827Z:3a0305ea-1683-4636-898c-7c844129ffda" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:18: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d3f6a1ce-c64e-4174-b107-5dac35ec7776" + ], + "x-ms-correlation-request-id": [ + "cf5dd40d-d31d-4ef0-b9cb-0625779715d5" + ], + "x-ms-arm-service-request-id": [ + "dfcda725-856c-450a-8d95-ec26f2ebdb33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T101837Z:cf5dd40d-d31d-4ef0-b9cb-0625779715d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:18: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bfab849c-5135-471e-a923-cad52c5d1c0f" + ], + "x-ms-correlation-request-id": [ + "5caae449-a438-476f-9769-8c688cddb582" + ], + "x-ms-arm-service-request-id": [ + "0f36229e-3911-4553-8d6e-9eaf7f0379a3" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101848Z:5caae449-a438-476f-9769-8c688cddb582" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:18: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b27fe5a5-59cf-4d8d-a0e0-06ae7b748047" + ], + "x-ms-correlation-request-id": [ + "d45fae06-9623-40b3-aaaf-e8f285f4b998" + ], + "x-ms-arm-service-request-id": [ + "377eb979-d455-4e71-a7ae-b11dde36778e" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101858Z:d45fae06-9623-40b3-aaaf-e8f285f4b998" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:18: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "21cba188-4fc6-421f-a8af-82451c9eb9be" + ], + "x-ms-correlation-request-id": [ + "8c18f7d7-d430-4d7f-830f-278fe58b1850" + ], + "x-ms-arm-service-request-id": [ + "51649686-7559-46bf-9429-dd3f8efc8c34" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101908Z:8c18f7d7-d430-4d7f-830f-278fe58b1850" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:19: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4974097e-023c-4d91-91a8-9368111ee82b" + ], + "x-ms-correlation-request-id": [ + "3d931101-a1e4-43fd-98b7-36843ef99800" + ], + "x-ms-arm-service-request-id": [ + "1d26f199-1ae7-40da-8409-b0e85c7fc105" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101919Z:3d931101-a1e4-43fd-98b7-36843ef99800" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:19: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "849f79d1-a6f8-4862-9f1a-a1d61a579a8c" + ], + "x-ms-correlation-request-id": [ + "07d8d705-626d-4817-b88a-ad48c0040aec" + ], + "x-ms-arm-service-request-id": [ + "5d62edb2-19de-45c3-b7d6-979dab091fa1" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101929Z:07d8d705-626d-4817-b88a-ad48c0040aec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:19: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7f7dce85-64e7-4da2-8248-5d2add3fce25" + ], + "x-ms-correlation-request-id": [ + "87cdeffd-8256-4946-b8d2-6e3fdd39482a" + ], + "x-ms-arm-service-request-id": [ + "feb3a34c-9750-462a-beb3-119ad1dd6fad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T101939Z:87cdeffd-8256-4946-b8d2-6e3fdd39482a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:19: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6486c1a8-5a55-41e3-8607-b9aa85cb8eee" + ], + "x-ms-correlation-request-id": [ + "1df6f76c-a073-460e-8791-f9c0f8dd5bf0" + ], + "x-ms-arm-service-request-id": [ + "5eb14d2f-4a9e-48dc-a07b-285d5b27aa51" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T101949Z:1df6f76c-a073-460e-8791-f9c0f8dd5bf0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:19: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f244c8d5-42bc-4f59-b533-9fff2ba1aa8c" + ], + "x-ms-correlation-request-id": [ + "0cce222f-7f38-4ef3-8662-f2c695454f7c" + ], + "x-ms-arm-service-request-id": [ + "fe0604e7-ad72-432d-8552-b7b706182600" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102000Z:0cce222f-7f38-4ef3-8662-f2c695454f7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:20: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "346ec02b-2f39-46a7-9086-c29405957f13" + ], + "x-ms-correlation-request-id": [ + "72b52fba-1de6-46fb-acc5-ba96f09d6cf0" + ], + "x-ms-arm-service-request-id": [ + "26748493-9838-44cf-ac0a-84b75ad2b7fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102010Z:72b52fba-1de6-46fb-acc5-ba96f09d6cf0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:20: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0b5361e3-c9f7-4839-87eb-13d62db5b331" + ], + "x-ms-correlation-request-id": [ + "053be216-fd23-49f1-8fe1-a396bc0999b1" + ], + "x-ms-arm-service-request-id": [ + "abc5baf5-9dc7-4e13-8565-5492643a8f6e" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102020Z:053be216-fd23-49f1-8fe1-a396bc0999b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:20: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c8ed7664-b4c9-4897-9502-a20c0f4e60b2?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M4ZWQ3NjY0LWI0YzktNDg5Ny05NTAyLWEyMGMwZjRlNjBiMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fa76b57b-fb84-4fe1-9229-36568857858d" + ], + "x-ms-correlation-request-id": [ + "de5643dd-9dc7-4bd5-b82c-0ddfdc9a2a86" + ], + "x-ms-arm-service-request-id": [ + "1a9a2387-26d5-405d-b672-b5853d2e352e" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102031Z:de5643dd-9dc7-4bd5-b82c-0ddfdc9a2a86" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:20:31 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c773aef0-5f5f-4284-b189-b84bfdc37cce?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M3NzNhZWYwLTVmNWYtNDI4NC1iMTg5LWI4NGJmZGMzN2NjZT9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0f22c7dd-8ded-49fc-ac4b-a88c3a9b1b8f" + ], + "x-ms-correlation-request-id": [ + "5d2651e8-9a90-463c-a72c-4b02f5fd81e3" + ], + "x-ms-arm-service-request-id": [ + "01fd37de-3966-40cc-882b-61588e32243d" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102046Z:5d2651e8-9a90-463c-a72c-4b02f5fd81e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:20: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c773aef0-5f5f-4284-b189-b84bfdc37cce?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M3NzNhZWYwLTVmNWYtNDI4NC1iMTg5LWI4NGJmZGMzN2NjZT9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3eb07d88-7bdd-45a4-9419-8a0e54c9053f" + ], + "x-ms-correlation-request-id": [ + "70ca436e-9c98-4758-ae57-cfecd9651cbf" + ], + "x-ms-arm-service-request-id": [ + "d4be90ac-126b-4a8a-969f-321ac17013ae" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102057Z:70ca436e-9c98-4758-ae57-cfecd9651cbf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:20: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/c773aef0-5f5f-4284-b189-b84bfdc37cce?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zL2M3NzNhZWYwLTVmNWYtNDI4NC1iMTg5LWI4NGJmZGMzN2NjZT9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c32393dc-c454-484c-ad7d-ba52b8231418" + ], + "x-ms-correlation-request-id": [ + "5682cefd-b71a-4f5b-b664-572012247246" + ], + "x-ms-arm-service-request-id": [ + "abf1fa6c-e476-4ec0-a27c-ad961242eacf" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102107Z:5682cefd-b71a-4f5b-b664-572012247246" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:21: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendhealth?api-version=2019-11-01&$expand=backendhealth%2Fapplicationgatewayresource", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzNTExMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczkxMjgvYmFja2VuZGhlYWx0aD9hcGktdmVyc2lvbj0yMDE5LTExLTAxJiRleHBhbmQ9YmFja2VuZGhlYWx0aCUyRmFwcGxpY2F0aW9uZ2F0ZXdheXJlc291cmNl", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c873bf6e-7fc9-4c68-a3f3-1c2955e7fce8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operationResults/70528144-35fa-4ca0-abb8-96a100b13200?api-version=2019-11-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "70528144-35fa-4ca0-abb8-96a100b13200" + ], + "x-ms-correlation-request-id": [ + "19cbf348-ed16-4d73-b2dc-25bb58391fe1" + ], + "x-ms-arm-service-request-id": [ + "8657c8b2-a70b-44b3-9128-7a8dd215e6e2" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102110Z:19cbf348-ed16-4d73-b2dc-25bb58391fe1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:21:09 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operationResults/70528144-35fa-4ca0-abb8-96a100b13200?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzcwNTI4MTQ0LTM1ZmEtNGNhMC1hYmI4LTk2YTEwMGIxMzIwMD9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operationResults/70528144-35fa-4ca0-abb8-96a100b13200?api-version=2019-11-01" + ], + "x-ms-request-id": [ + "70528144-35fa-4ca0-abb8-96a100b13200" + ], + "x-ms-correlation-request-id": [ + "19cbf348-ed16-4d73-b2dc-25bb58391fe1" + ], + "x-ms-arm-service-request-id": [ + "8657c8b2-a70b-44b3-9128-7a8dd215e6e2" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102121Z:ceb77ab5-056a-481a-9053-a36b08e05ecd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:21:20 GMT" + ], + "Content-Length": [ + "3458" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"backendAddressPools\": [\r\n {\r\n \"backendAddressPool\": {\r\n \"name\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"backendHttpSettings\": {\r\n \"name\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"www.microsoft.com\",\r\n \"health\": \"Unhealthy\",\r\n \"healthProbeLog\": \"The backend health status could not be retrieved. This happens when an NSG/UDR/Firewall on the application gateway subnet is blocking traffic on ports 65503-65534 in case of v1 SKU, and ports 65200-65535 in case of the v2 SKU. To learn more visit - https://aka.ms/UnknownBackendHealth\"\r\n },\r\n {\r\n \"address\": \"www.bing.com\",\r\n \"health\": \"Unhealthy\",\r\n \"healthProbeLog\": \"The backend health status could not be retrieved. This happens when an NSG/UDR/Firewall on the application gateway subnet is blocking traffic on ports 65503-65534 in case of v1 SKU, and ports 65200-65535 in case of the v2 SKU. To learn more visit - https://aka.ms/UnknownBackendHealth\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operationResults/70528144-35fa-4ca0-abb8-96a100b13200?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25SZXN1bHRzLzcwNTI4MTQ0LTM1ZmEtNGNhMC1hYmI4LTk2YTEwMGIxMzIwMD9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operationResults/70528144-35fa-4ca0-abb8-96a100b13200?api-version=2019-11-01" + ], + "x-ms-request-id": [ + "70528144-35fa-4ca0-abb8-96a100b13200" + ], + "x-ms-correlation-request-id": [ + "19cbf348-ed16-4d73-b2dc-25bb58391fe1" + ], + "x-ms-arm-service-request-id": [ + "8657c8b2-a70b-44b3-9128-7a8dd215e6e2" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102121Z:aa01aa28-77f0-4fc9-bd47-9353b3f148ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:21:20 GMT" + ], + "Content-Length": [ + "3458" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"backendAddressPools\": [\r\n {\r\n \"backendAddressPool\": {\r\n \"name\": \"ps8370\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendAddressPools/ps8370\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendAddressPools\"\r\n },\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"backendHttpSettings\": {\r\n \"name\": \"ps7701\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/backendHttpSettingsCollection/ps7701\",\r\n \"etag\": \"W/\\\"549bd250-4a3e-4cc3-8b83-77b2f408a80f\\\"\",\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 \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/requestRoutingRules/ps2110\"\r\n }\r\n ],\r\n \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps5110/providers/Microsoft.Network/applicationGateways/ps9128/urlPathMaps/ps2226\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"www.microsoft.com\",\r\n \"health\": \"Unhealthy\",\r\n \"healthProbeLog\": \"The backend health status could not be retrieved. This happens when an NSG/UDR/Firewall on the application gateway subnet is blocking traffic on ports 65503-65534 in case of v1 SKU, and ports 65200-65535 in case of the v2 SKU. To learn more visit - https://aka.ms/UnknownBackendHealth\"\r\n },\r\n {\r\n \"address\": \"www.bing.com\",\r\n \"health\": \"Unhealthy\",\r\n \"healthProbeLog\": \"The backend health status could not be retrieved. This happens when an NSG/UDR/Firewall on the application gateway subnet is blocking traffic on ports 65503-65534 in case of v1 SKU, and ports 65200-65535 in case of the v2 SKU. To learn more visit - https://aka.ms/UnknownBackendHealth\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0b8fa9ef-7592-47de-800a-6734c9545e32?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzBiOGZhOWVmLTc1OTItNDdkZS04MDBhLTY3MzRjOTU0NWUzMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3b089aa6-6234-4f9a-a522-1527e2951001" + ], + "x-ms-correlation-request-id": [ + "e9bf4777-df3d-436a-a544-92eb2ec94569" + ], + "x-ms-arm-service-request-id": [ + "2228863c-2b9f-466a-b11a-47d5f2e682bc" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102142Z:e9bf4777-df3d-436a-a544-92eb2ec94569" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:21: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0b8fa9ef-7592-47de-800a-6734c9545e32?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzBiOGZhOWVmLTc1OTItNDdkZS04MDBhLTY3MzRjOTU0NWUzMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d8fbc4e5-d116-473c-a26f-11c32388ce76" + ], + "x-ms-correlation-request-id": [ + "6124409c-e703-45e5-b33b-dfd98fdb13b9" + ], + "x-ms-arm-service-request-id": [ + "00b8d002-59f3-48a7-86b6-f60507471a56" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102152Z:6124409c-e703-45e5-b33b-dfd98fdb13b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:21: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0b8fa9ef-7592-47de-800a-6734c9545e32?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzBiOGZhOWVmLTc1OTItNDdkZS04MDBhLTY3MzRjOTU0NWUzMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1811c312-5c83-43ed-a37c-3c6740bd3e3a" + ], + "x-ms-correlation-request-id": [ + "4e095885-751b-4a16-95f6-8c80d02e8b87" + ], + "x-ms-arm-service-request-id": [ + "0cd29a8f-e215-4edf-b671-82523c8669ec" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102202Z:4e095885-751b-4a16-95f6-8c80d02e8b87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:22: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0b8fa9ef-7592-47de-800a-6734c9545e32?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzBiOGZhOWVmLTc1OTItNDdkZS04MDBhLTY3MzRjOTU0NWUzMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "21f36edf-c5a8-459b-9a22-747c05cc67f4" + ], + "x-ms-correlation-request-id": [ + "39bec335-1573-4ff0-ac89-51abd0748f49" + ], + "x-ms-arm-service-request-id": [ + "bc9355c7-c299-4267-a6e6-f5149dcd1fc0" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102212Z:39bec335-1573-4ff0-ac89-51abd0748f49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:22: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0b8fa9ef-7592-47de-800a-6734c9545e32?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzBiOGZhOWVmLTc1OTItNDdkZS04MDBhLTY3MzRjOTU0NWUzMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "51fb40cc-2029-42ac-be9c-92e5e97d4766" + ], + "x-ms-correlation-request-id": [ + "4165606b-bef4-4dc9-a04c-5558babf861a" + ], + "x-ms-arm-service-request-id": [ + "9e4dc1cc-36a7-4490-9ae0-f851228a9d3f" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102223Z:4165606b-bef4-4dc9-a04c-5558babf861a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:22:22 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0b8fa9ef-7592-47de-800a-6734c9545e32?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzBiOGZhOWVmLTc1OTItNDdkZS04MDBhLTY3MzRjOTU0NWUzMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5d7ef081-6235-49b4-b691-0b0fcdb45270" + ], + "x-ms-correlation-request-id": [ + "5cf10d99-ab34-45eb-8d9a-9fdd1090f726" + ], + "x-ms-arm-service-request-id": [ + "dbc07b4c-9891-4d76-8cf5-a7317fea48f4" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102233Z:5cf10d99-ab34-45eb-8d9a-9fdd1090f726" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:22:32 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0b8fa9ef-7592-47de-800a-6734c9545e32?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzBiOGZhOWVmLTc1OTItNDdkZS04MDBhLTY3MzRjOTU0NWUzMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "60256e60-c2c1-4031-bf77-c62a8e6e6106" + ], + "x-ms-correlation-request-id": [ + "4a867f0f-8814-4d3a-afe9-03a746832dce" + ], + "x-ms-arm-service-request-id": [ + "a73e6800-3198-4e9a-92f2-b5254be1aeda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102243Z:4a867f0f-8814-4d3a-afe9-03a746832dce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:22:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0b8fa9ef-7592-47de-800a-6734c9545e32?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzBiOGZhOWVmLTc1OTItNDdkZS04MDBhLTY3MzRjOTU0NWUzMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6a81a8d0-f9ae-468f-b32c-4775c7a8dc60" + ], + "x-ms-correlation-request-id": [ + "ee0e63a0-ad62-48ed-b4ad-c786c4749476" + ], + "x-ms-arm-service-request-id": [ + "87f6cdaa-d551-41eb-b6a1-d211cc3473d4" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102254Z:ee0e63a0-ad62-48ed-b4ad-c786c4749476" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:22: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0b8fa9ef-7592-47de-800a-6734c9545e32?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzBiOGZhOWVmLTc1OTItNDdkZS04MDBhLTY3MzRjOTU0NWUzMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "07537e08-bc38-4fa1-b5ea-c583d7420f5a" + ], + "x-ms-correlation-request-id": [ + "7b42f105-89b3-450e-b2b2-cbac000a02ad" + ], + "x-ms-arm-service-request-id": [ + "f30f5cb5-d188-465e-bb8c-68cb97823be7" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102304Z:7b42f105-89b3-450e-b2b2-cbac000a02ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:23: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0b8fa9ef-7592-47de-800a-6734c9545e32?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzBiOGZhOWVmLTc1OTItNDdkZS04MDBhLTY3MzRjOTU0NWUzMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7ae723e6-3e55-4cc9-8e5f-a29658c1f019" + ], + "x-ms-correlation-request-id": [ + "31e78906-9c54-4bae-926f-aee0e931cd59" + ], + "x-ms-arm-service-request-id": [ + "5c3a75e7-d077-429f-b3df-906b6c991c8d" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102314Z:31e78906-9c54-4bae-926f-aee0e931cd59" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:23: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0b8fa9ef-7592-47de-800a-6734c9545e32?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzBiOGZhOWVmLTc1OTItNDdkZS04MDBhLTY3MzRjOTU0NWUzMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "84bd3942-9e84-4448-9a30-daa771a4714a" + ], + "x-ms-correlation-request-id": [ + "9b6ac506-c095-401e-ba9a-edc6a1f8788f" + ], + "x-ms-arm-service-request-id": [ + "a682deb2-1472-4512-ba64-42f5674eec54" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102324Z:9b6ac506-c095-401e-ba9a-edc6a1f8788f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:23: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0b8fa9ef-7592-47de-800a-6734c9545e32?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzBiOGZhOWVmLTc1OTItNDdkZS04MDBhLTY3MzRjOTU0NWUzMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b35f846b-0693-47b8-8dd9-6f1f29671386" + ], + "x-ms-correlation-request-id": [ + "e5734fc8-60cb-4480-be4f-024bb8348a23" + ], + "x-ms-arm-service-request-id": [ + "80c31b8a-cd4d-4f55-b8f8-8cc4eb489583" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102335Z:e5734fc8-60cb-4480-be4f-024bb8348a23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:23: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0b8fa9ef-7592-47de-800a-6734c9545e32?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzBiOGZhOWVmLTc1OTItNDdkZS04MDBhLTY3MzRjOTU0NWUzMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4c08c700-395c-4c9b-b6ad-e5fb37e9f5a8" + ], + "x-ms-correlation-request-id": [ + "38072416-3c92-427e-87e6-4daa3713ac2a" + ], + "x-ms-arm-service-request-id": [ + "f2a320d8-6e08-4f50-8653-802f195d06be" + ], + "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": [ + "GERMANYWESTCENTRAL:20200121T102345Z:38072416-3c92-427e-87e6-4daa3713ac2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:23: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/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/westus2/operations/0b8fa9ef-7592-47de-800a-6734c9545e32?api-version=2019-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25zLzBiOGZhOWVmLTc1OTItNDdkZS04MDBhLTY3MzRjOTU0NWUzMj9hcGktdmVyc2lvbj0yMDE5LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.18.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "15e674b2-c871-479d-b4e4-8c759ae3c722" + ], + "x-ms-correlation-request-id": [ + "6920757f-a3d2-4d3e-9fe7-00eee57b4a5b" + ], + "x-ms-arm-service-request-id": [ + "505e7714-f618-4856-ba81-0a860f337144" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102355Z:6920757f-a3d2-4d3e-9fe7-00eee57b4a5b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:23:55 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourcegroups/ps5110?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlZ3JvdXBzL3BzNTExMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "32a40f82-c880-4d88-b414-43e32c0bd922" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "c0a55819-8095-4f81-922b-6197731a3376" + ], + "x-ms-correlation-request-id": [ + "c0a55819-8095-4f81-922b-6197731a3376" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102402Z:c0a55819-8095-4f81-922b-6197731a3376" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:24:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "f99f1ff2-be44-4ca7-a7db-ff2f65fdb37f" + ], + "x-ms-correlation-request-id": [ + "f99f1ff2-be44-4ca7-a7db-ff2f65fdb37f" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102418Z:f99f1ff2-be44-4ca7-a7db-ff2f65fdb37f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:24:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "48615139-604c-46e1-b9f3-b4193c4f2c7b" + ], + "x-ms-correlation-request-id": [ + "48615139-604c-46e1-b9f3-b4193c4f2c7b" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102433Z:48615139-604c-46e1-b9f3-b4193c4f2c7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:24:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "49296e04-46b2-4843-8c19-c509fbbd2d7a" + ], + "x-ms-correlation-request-id": [ + "49296e04-46b2-4843-8c19-c509fbbd2d7a" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102448Z:49296e04-46b2-4843-8c19-c509fbbd2d7a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:24:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "038e4c45-87b9-419b-9d0f-a5fbd7518f03" + ], + "x-ms-correlation-request-id": [ + "038e4c45-87b9-419b-9d0f-a5fbd7518f03" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102504Z:038e4c45-87b9-419b-9d0f-a5fbd7518f03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:25:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "080fb4b3-a620-4bad-a7d9-530c974d9627" + ], + "x-ms-correlation-request-id": [ + "080fb4b3-a620-4bad-a7d9-530c974d9627" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102519Z:080fb4b3-a620-4bad-a7d9-530c974d9627" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:25:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "00226391-df40-4d19-9a03-7c3a4dece54d" + ], + "x-ms-correlation-request-id": [ + "00226391-df40-4d19-9a03-7c3a4dece54d" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102535Z:00226391-df40-4d19-9a03-7c3a4dece54d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:25:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "91d6bcd3-216a-48e1-aa8e-26e853a5b08c" + ], + "x-ms-correlation-request-id": [ + "91d6bcd3-216a-48e1-aa8e-26e853a5b08c" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102550Z:91d6bcd3-216a-48e1-aa8e-26e853a5b08c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:25:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "f6aee320-e1f1-4eda-8841-a906d2458dcc" + ], + "x-ms-correlation-request-id": [ + "f6aee320-e1f1-4eda-8841-a906d2458dcc" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102605Z:f6aee320-e1f1-4eda-8841-a906d2458dcc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:26:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "de9cddf0-740c-40e7-a09f-a6b278e63d78" + ], + "x-ms-correlation-request-id": [ + "de9cddf0-740c-40e7-a09f-a6b278e63d78" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102621Z:de9cddf0-740c-40e7-a09f-a6b278e63d78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:26:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "efc47f47-6449-4b55-8b30-15bebe234203" + ], + "x-ms-correlation-request-id": [ + "efc47f47-6449-4b55-8b30-15bebe234203" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102636Z:efc47f47-6449-4b55-8b30-15bebe234203" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:26:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "9fd3d586-d28a-4947-9c15-69263a244b60" + ], + "x-ms-correlation-request-id": [ + "9fd3d586-d28a-4947-9c15-69263a244b60" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102652Z:9fd3d586-d28a-4947-9c15-69263a244b60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:26:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "4f2e0a3c-8d64-4f8e-bfcc-cb901b8c2c4a" + ], + "x-ms-correlation-request-id": [ + "4f2e0a3c-8d64-4f8e-bfcc-cb901b8c2c4a" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102707Z:4f2e0a3c-8d64-4f8e-bfcc-cb901b8c2c4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:27:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "7696b8b5-69e3-4c3c-95ba-a7b06b87c5f9" + ], + "x-ms-correlation-request-id": [ + "7696b8b5-69e3-4c3c-95ba-a7b06b87c5f9" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102722Z:7696b8b5-69e3-4c3c-95ba-a7b06b87c5f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:27:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "568797c5-def6-47b1-8123-2fd4dfbc71fd" + ], + "x-ms-correlation-request-id": [ + "568797c5-def6-47b1-8123-2fd4dfbc71fd" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102738Z:568797c5-def6-47b1-8123-2fd4dfbc71fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:27:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "534c1dc3-2aac-4784-9c29-aeb77ee8c55a" + ], + "x-ms-correlation-request-id": [ + "534c1dc3-2aac-4784-9c29-aeb77ee8c55a" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102753Z:534c1dc3-2aac-4784-9c29-aeb77ee8c55a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:27:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "8912fdf8-faf0-4c85-a44b-3890786cc30f" + ], + "x-ms-correlation-request-id": [ + "8912fdf8-faf0-4c85-a44b-3890786cc30f" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102808Z:8912fdf8-faf0-4c85-a44b-3890786cc30f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:28:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "f2a46993-f0c3-43a7-94f9-ef326b47dba5" + ], + "x-ms-correlation-request-id": [ + "f2a46993-f0c3-43a7-94f9-ef326b47dba5" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102824Z:f2a46993-f0c3-43a7-94f9-ef326b47dba5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:28:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "ee1f164e-44c2-42ff-902a-5d01fe9d723c" + ], + "x-ms-correlation-request-id": [ + "ee1f164e-44c2-42ff-902a-5d01fe9d723c" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102839Z:ee1f164e-44c2-42ff-902a-5d01fe9d723c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:28:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "45555c20-af85-4c1b-a9d9-a9b0975315d8" + ], + "x-ms-correlation-request-id": [ + "45555c20-af85-4c1b-a9d9-a9b0975315d8" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102854Z:45555c20-af85-4c1b-a9d9-a9b0975315d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:28:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "a1a55424-ae5e-4559-ba2e-6b89cf36361b" + ], + "x-ms-correlation-request-id": [ + "a1a55424-ae5e-4559-ba2e-6b89cf36361b" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102910Z:a1a55424-ae5e-4559-ba2e-6b89cf36361b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:29:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "d31d950e-12c1-4312-b733-35724aba4c74" + ], + "x-ms-correlation-request-id": [ + "d31d950e-12c1-4312-b733-35724aba4c74" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102926Z:d31d950e-12c1-4312-b733-35724aba4c74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:29:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "6e51c512-8efe-4768-a55d-3574b59fe4fb" + ], + "x-ms-correlation-request-id": [ + "6e51c512-8efe-4768-a55d-3574b59fe4fb" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102941Z:6e51c512-8efe-4768-a55d-3574b59fe4fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:29:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "03e89ab0-cfce-4942-a8d0-eed02247c770" + ], + "x-ms-correlation-request-id": [ + "03e89ab0-cfce-4942-a8d0-eed02247c770" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T102957Z:03e89ab0-cfce-4942-a8d0-eed02247c770" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:29:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "a5600046-0050-4fb7-9db6-c8efdb89f18a" + ], + "x-ms-correlation-request-id": [ + "a5600046-0050-4fb7-9db6-c8efdb89f18a" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103012Z:a5600046-0050-4fb7-9db6-c8efdb89f18a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:30:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "4cb52fdf-b9a4-491e-ac57-74f15691809a" + ], + "x-ms-correlation-request-id": [ + "4cb52fdf-b9a4-491e-ac57-74f15691809a" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103027Z:4cb52fdf-b9a4-491e-ac57-74f15691809a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:30:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "6719a5ab-b0bb-4965-89a7-adf867fa2049" + ], + "x-ms-correlation-request-id": [ + "6719a5ab-b0bb-4965-89a7-adf867fa2049" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103043Z:6719a5ab-b0bb-4965-89a7-adf867fa2049" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:30:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "8fe33e2f-6678-4aac-9b35-37ad8c0bb1d4" + ], + "x-ms-correlation-request-id": [ + "8fe33e2f-6678-4aac-9b35-37ad8c0bb1d4" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103058Z:8fe33e2f-6678-4aac-9b35-37ad8c0bb1d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:30:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "f3f37a0e-49cf-4cfc-84b8-cb007fa8a860" + ], + "x-ms-correlation-request-id": [ + "f3f37a0e-49cf-4cfc-84b8-cb007fa8a860" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103113Z:f3f37a0e-49cf-4cfc-84b8-cb007fa8a860" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:31:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "c9cbdf4f-d51e-424a-aafa-f004892adef0" + ], + "x-ms-correlation-request-id": [ + "c9cbdf4f-d51e-424a-aafa-f004892adef0" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103129Z:c9cbdf4f-d51e-424a-aafa-f004892adef0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:31:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "91f81e00-dede-4e8d-b0f7-581cfd08181e" + ], + "x-ms-correlation-request-id": [ + "91f81e00-dede-4e8d-b0f7-581cfd08181e" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103144Z:91f81e00-dede-4e8d-b0f7-581cfd08181e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:31:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "c2be0214-fa49-4ad0-bfca-572de653861b" + ], + "x-ms-correlation-request-id": [ + "c2be0214-fa49-4ad0-bfca-572de653861b" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103200Z:c2be0214-fa49-4ad0-bfca-572de653861b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:31:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "d3b9ae95-b9c1-4f3a-92ac-1bccf6cd4fb8" + ], + "x-ms-correlation-request-id": [ + "d3b9ae95-b9c1-4f3a-92ac-1bccf6cd4fb8" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103215Z:d3b9ae95-b9c1-4f3a-92ac-1bccf6cd4fb8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:32:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "abd43e14-a9fa-489c-923a-44dbf4743baf" + ], + "x-ms-correlation-request-id": [ + "abd43e14-a9fa-489c-923a-44dbf4743baf" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103230Z:abd43e14-a9fa-489c-923a-44dbf4743baf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:32:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "1eb48d0b-5807-4a3f-93d6-309a2b6adb34" + ], + "x-ms-correlation-request-id": [ + "1eb48d0b-5807-4a3f-93d6-309a2b6adb34" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103246Z:1eb48d0b-5807-4a3f-93d6-309a2b6adb34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:32:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "a5577c55-ba0d-495e-890d-bf26d319ca67" + ], + "x-ms-correlation-request-id": [ + "a5577c55-ba0d-495e-890d-bf26d319ca67" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103301Z:a5577c55-ba0d-495e-890d-bf26d319ca67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:33:01 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "ce4c6583-b467-4707-b5cf-ff55fa44113d" + ], + "x-ms-correlation-request-id": [ + "ce4c6583-b467-4707-b5cf-ff55fa44113d" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103316Z:ce4c6583-b467-4707-b5cf-ff55fa44113d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:33:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "5a19cc92-5a10-4b6f-9e3d-6a553be97e9a" + ], + "x-ms-correlation-request-id": [ + "5a19cc92-5a10-4b6f-9e3d-6a553be97e9a" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103332Z:5a19cc92-5a10-4b6f-9e3d-6a553be97e9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:33:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "708a9084-e8db-4ea6-ab61-a3713f615a81" + ], + "x-ms-correlation-request-id": [ + "708a9084-e8db-4ea6-ab61-a3713f615a81" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103347Z:708a9084-e8db-4ea6-ab61-a3713f615a81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:33:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "76bc9f84-eca8-48ec-ba59-c14407a7ba83" + ], + "x-ms-correlation-request-id": [ + "76bc9f84-eca8-48ec-ba59-c14407a7ba83" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103403Z:76bc9f84-eca8-48ec-ba59-c14407a7ba83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:34:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "4603cb85-0b3e-457c-a3a6-a66a526874be" + ], + "x-ms-correlation-request-id": [ + "4603cb85-0b3e-457c-a3a6-a66a526874be" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103419Z:4603cb85-0b3e-457c-a3a6-a66a526874be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:34:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "e25d0a03-7b3d-4dff-879c-cc66a2499e9c" + ], + "x-ms-correlation-request-id": [ + "e25d0a03-7b3d-4dff-879c-cc66a2499e9c" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103434Z:e25d0a03-7b3d-4dff-879c-cc66a2499e9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:34:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "2e0f50d6-1476-4be8-9189-0c3b2250adfd" + ], + "x-ms-correlation-request-id": [ + "2e0f50d6-1476-4be8-9189-0c3b2250adfd" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103449Z:2e0f50d6-1476-4be8-9189-0c3b2250adfd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:34:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-request-id": [ + "e738bb8a-9a16-4810-a970-7782e46f184c" + ], + "x-ms-correlation-request-id": [ + "e738bb8a-9a16-4810-a970-7782e46f184c" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103505Z:e738bb8a-9a16-4810-a970-7782e46f184c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:35:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "484ad51e-4579-48ce-b29c-0d1e13d05cca" + ], + "x-ms-correlation-request-id": [ + "484ad51e-4579-48ce-b29c-0d1e13d05cca" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103520Z:484ad51e-4579-48ce-b29c-0d1e13d05cca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:35:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "9c1daa38-5067-4fbb-90f8-6fc612982c5d" + ], + "x-ms-correlation-request-id": [ + "9c1daa38-5067-4fbb-90f8-6fc612982c5d" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103535Z:9c1daa38-5067-4fbb-90f8-6fc612982c5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:35:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "85caa79a-fd7d-4106-b0de-a5e9fd41d901" + ], + "x-ms-correlation-request-id": [ + "85caa79a-fd7d-4106-b0de-a5e9fd41d901" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103551Z:85caa79a-fd7d-4106-b0de-a5e9fd41d901" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:35:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-request-id": [ + "1411a07a-2ec4-4700-a262-9f4a052ab0a5" + ], + "x-ms-correlation-request-id": [ + "1411a07a-2ec4-4700-a262-9f4a052ab0a5" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103606Z:1411a07a-2ec4-4700-a262-9f4a052ab0a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:36:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "1601e4be-8547-4404-ad09-955b8b08ce23" + ], + "x-ms-correlation-request-id": [ + "1601e4be-8547-4404-ad09-955b8b08ce23" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103622Z:1601e4be-8547-4404-ad09-955b8b08ce23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:36:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-request-id": [ + "474a64b5-2fc3-49ad-8917-9b6f81086a28" + ], + "x-ms-correlation-request-id": [ + "474a64b5-2fc3-49ad-8917-9b6f81086a28" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103637Z:474a64b5-2fc3-49ad-8917-9b6f81086a28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:36:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "4adb773f-15af-4fdf-a4fb-bc5c9daa0d2a" + ], + "x-ms-correlation-request-id": [ + "4adb773f-15af-4fdf-a4fb-bc5c9daa0d2a" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103652Z:4adb773f-15af-4fdf-a4fb-bc5c9daa0d2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:36:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-request-id": [ + "1b54b10a-552c-41ac-9923-4b512a81580d" + ], + "x-ms-correlation-request-id": [ + "1b54b10a-552c-41ac-9923-4b512a81580d" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103708Z:1b54b10a-552c-41ac-9923-4b512a81580d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:37:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-request-id": [ + "c0b04224-fdcb-4b7b-b695-179c984e87a8" + ], + "x-ms-correlation-request-id": [ + "c0b04224-fdcb-4b7b-b695-179c984e87a8" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103723Z:c0b04224-fdcb-4b7b-b695-179c984e87a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:37:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-request-id": [ + "95206a63-0f98-4081-b0c1-ab8d65cfe2dc" + ], + "x-ms-correlation-request-id": [ + "95206a63-0f98-4081-b0c1-ab8d65cfe2dc" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103738Z:95206a63-0f98-4081-b0c1-ab8d65cfe2dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:37:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxMTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-request-id": [ + "e122a3df-c780-45f1-89ab-17298ebc3499" + ], + "x-ms-correlation-request-id": [ + "e122a3df-c780-45f1-89ab-17298ebc3499" + ], + "x-ms-routing-request-id": [ + "GERMANYWESTCENTRAL:20200121T103739Z:e122a3df-c780-45f1-89ab-17298ebc3499" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jan 2020 10:37:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-ApplicationGatewayWithListenerHostNames": [ + "ps5110", + "ps9128", + "ps459", + "ps6245", + "ps1186", + "ps8537", + "ps1050", + "ps3608", + "ps8898", + "ps7274", + "ps9608", + "ps4732", + "ps9594", + "ps3186", + "ps8370", + "ps3574", + "ps8522", + "ps7701", + "ps7364", + "ps9118", + "ps2110", + "ps2257", + "ps2226", + "ps8038", + "ps2515", + "ps6356", + "ps266", + "ps1634", + "ps712", + "ps3030", + "ps4689" + ] + }, + "Variables": { + "SubscriptionId": "f7e1a56e-347b-4103-87c7-e775a3e11ac5" + } +} \ No newline at end of file diff --git a/src/Network/Network/ApplicationGateway/HttpListener/AzureApplicationGatewayHttpListenerBase.cs b/src/Network/Network/ApplicationGateway/HttpListener/AzureApplicationGatewayHttpListenerBase.cs index a90bf4a2e0ff..f7778cc15744 100644 --- a/src/Network/Network/ApplicationGateway/HttpListener/AzureApplicationGatewayHttpListenerBase.cs +++ b/src/Network/Network/ApplicationGateway/HttpListener/AzureApplicationGatewayHttpListenerBase.cs @@ -79,6 +79,11 @@ public class AzureApplicationGatewayHttpListenerBase : NetworkBaseCmdlet [ValidateNotNullOrEmpty] public string HostName { get; set; } + [Parameter( + HelpMessage = "Host names")] + [ValidateNotNullOrEmpty] + public string[] HostNames { get; set; } + [Parameter( HelpMessage = "RequireServerNameIndication")] [ValidateSet("true", "false", IgnoreCase = true)] @@ -170,6 +175,11 @@ public PSApplicationGatewayHttpListener NewObject() httpListener.FirewallPolicy.Id = this.FirewallPolicyId; } + if (this.HostNames != null) + { + httpListener.HostNames = this.HostNames?.ToList(); + } + if (this.CustomErrorConfiguration != null) { httpListener.CustomErrorConfigurations = this.CustomErrorConfiguration?.ToList(); diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index bf0d41574946..8f1adeadd08b 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -103,6 +103,10 @@ - Cmdlets updated with optional parameters: - New-AzApplicationGatewayHttpListener : added parameter FirewallPolicy, FirewallPolicyId - New-AzApplicationGatewayPathRuleConfig : added parameter FirewallPolicy, FirewallPolicyId +* Added support for perListener HostNames + - Cmdlets updated with optional parameters: + - New-AzApplicationGatewayHttpListener : added parameter HostNames + - Add-AzApplicationGatewayHttpListener : added parameter HostNames * Fix required subnet with name AzureBastionSubnet in `PSBastion` can be case insensitive * Support for Destination FQDNs in Network Rules and Translated FQDN in NAT Rules for Azure Firewall * Add support for top level resource RouteTables of IpGroup diff --git a/src/Network/Network/Models/PSApplicationGatewayHttpListener.cs b/src/Network/Network/Models/PSApplicationGatewayHttpListener.cs index 797592d62a4b..f8d5240d9ddf 100644 --- a/src/Network/Network/Models/PSApplicationGatewayHttpListener.cs +++ b/src/Network/Network/Models/PSApplicationGatewayHttpListener.cs @@ -27,6 +27,8 @@ public class PSApplicationGatewayHttpListener : PSChildResource public string Protocol { get; set; } [Ps1Xml(Target = ViewControl.Table)] public string HostName { get; set; } + [Ps1Xml(Target = ViewControl.Table)] + public List HostNames { get; set; } public PSResourceId SslCertificate { get; set; } [Ps1Xml(Target = ViewControl.Table)] public bool RequireServerNameIndication { get; set; } diff --git a/src/Network/Network/help/Add-AzApplicationGatewayHttpListener.md b/src/Network/Network/help/Add-AzApplicationGatewayHttpListener.md index b388eb342579..95c635e70950 100644 --- a/src/Network/Network/help/Add-AzApplicationGatewayHttpListener.md +++ b/src/Network/Network/help/Add-AzApplicationGatewayHttpListener.md @@ -17,7 +17,8 @@ Adds an HTTP listener to an application gateway. ``` Add-AzApplicationGatewayHttpListener -ApplicationGateway -Name [-FrontendIPConfigurationId ] [-FrontendPortId ] [-SslCertificateId ] - [-HostName ] [-RequireServerNameIndication ] -Protocol + [-FirewallPolicyId ] [-HostName ] [-HostNames ] + [-RequireServerNameIndication ] -Protocol [-CustomErrorConfiguration ] [-DefaultProfile ] [] ``` @@ -26,8 +27,10 @@ Add-AzApplicationGatewayHttpListener -ApplicationGateway ``` Add-AzApplicationGatewayHttpListener -ApplicationGateway -Name [-FrontendIPConfiguration ] - [-FrontendPort ] [-SslCertificate ] - [-HostName ] [-RequireServerNameIndication ] -Protocol + [-FrontendPort ] + [-FirewallPolicy ] + [-SslCertificate ] [-HostName ] [-HostNames ] + [-RequireServerNameIndication ] -Protocol [-CustomErrorConfiguration ] [-DefaultProfile ] [] ``` @@ -54,6 +57,15 @@ PS C:\> $AppGw = Add-AzApplicationGatewayHttpListener -ApplicationGateway $AppGw The first command gets the application gateway and stores it in the $AppGw variable. The second command adds the listener, which uses the HTTPS protocol, to the application gateway. +### Example 3: Add a HTTPS listener with SSL and HostNames +``` +PS C:\>$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Add-AzApplicationGatewayHttpListener -ApplicationGateway $AppGw -Name "Listener01" -Protocol "Https" -FrontendIpConfiguration $FIP01 -FrontendPort $FP01 -SslCertificate $SSLCert01 -HostNames "*.contoso.com,www.microsoft.com" +``` + +The first command gets the application gateway and stores it in the $AppGw variable. +The second command adds the listener, which uses the HTTPS protocol, with SSL Certificates and HostNames, to the application gateway. + ## PARAMETERS ### -ApplicationGateway @@ -101,6 +113,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -FirewallPolicy +FirewallPolicy + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy +Parameter Sets: SetByResource +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FirewallPolicyId +FirewallPolicyId + +```yaml +Type: System.String +Parameter Sets: SetByResourceId +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -FrontendIPConfiguration Specifies the application gateway front-end IP resource object. @@ -176,6 +218,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HostNames +Host names + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name Specifies the name of the front-end port that this command adds. diff --git a/src/Network/Network/help/New-AzApplicationGatewayHttpListener.md b/src/Network/Network/help/New-AzApplicationGatewayHttpListener.md index d9d5781b9eb4..1ca3b25c80b3 100644 --- a/src/Network/Network/help/New-AzApplicationGatewayHttpListener.md +++ b/src/Network/Network/help/New-AzApplicationGatewayHttpListener.md @@ -16,10 +16,9 @@ Creates an HTTP listener for an application gateway. ### SetByResourceId ``` New-AzApplicationGatewayHttpListener -Name [-FrontendIPConfigurationId ] - [-FrontendPortId ] [-SslCertificateId ] [-HostName ] - [-RequireServerNameIndication ] -Protocol + [-FrontendPortId ] [-SslCertificateId ] [-FirewallPolicyId ] [-HostName ] + [-HostNames ] [-RequireServerNameIndication ] -Protocol [-CustomErrorConfiguration ] [-DefaultProfile ] - [-FirewallPolicyId ] [] ``` @@ -27,9 +26,10 @@ New-AzApplicationGatewayHttpListener -Name [-FrontendIPConfigurationId ``` New-AzApplicationGatewayHttpListener -Name [-FrontendIPConfiguration ] - [-FrontendPort ] [-SslCertificate ] + [-FrontendPort ] [-FirewallPolicy ] - [-HostName ] [-RequireServerNameIndication ] -Protocol + [-SslCertificate ] [-HostName ] [-HostNames ] + [-RequireServerNameIndication ] -Protocol [-CustomErrorConfiguration ] [-DefaultProfile ] [] ``` @@ -61,6 +61,14 @@ PS C:\>$Listener = New-AzApplicationGatewayHttpListener -Name "Listener01" -Prot This command creates an HTTP listener named Listener01, FirewallPolicy as $firewallPolicy and stores the result in the variable named $Listener. +### Example 4: Add a HTTPS listener with SSL and HostNames +``` +PS C:\> $Listener = New-AzApplicationGatewayHttpListener -Name "Listener01" -Protocol "Https" -FrontendIpConfiguration $FIp01 -FrontendPort $FP01 -SslCertificate $SSLCert01 -HostNames "*.contoso.com,www.microsoft.com" +``` + +This command creates an HTTP listener that uses SSL offload and provides the SSL certificate in the $SSLCert01 variable along with two HostNames. +The command stores the result in the variable named $Listener. + ## PARAMETERS ### -CustomErrorConfiguration @@ -93,6 +101,45 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -FirewallPolicy +Specifies the object reference to a top-level firewall policy. +The object reference can be created by using New-AzApplicationGatewayWebApplicationFirewallPolicy cmdlet. +$firewallPolicy = New-AzApplicationGatewayFirewallPolicy -Name "wafPolicy1" -ResourceGroup "rgName" +A firewall policy created using the above commandlet can be referred at a path-rule level. +he above command would create a default policy settings and managed rules. +Instead of the default values, users can specify PolicySettings, ManagedRules by using New-AzApplicationGatewayFirewallPolicySettings and New-AzApplicationGatewayFirewallPolicyManagedRules respectively. + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy +Parameter Sets: SetByResource +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FirewallPolicyId +Specifies the ID of an existing top-level web application firewall resource. +Firewall policy IDs can be returned by using the Get-AzApplicationGatewayWebApplicationFirewallPolicy cmdlet. +After we have the ID you can use *FirewallPolicyId* parameter instead of *FirewallPolicy* parameter. +For instance: +-FirewallPolicyId �/subscriptions//resourceGroups//providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies/� + +```yaml +Type: System.String +Parameter Sets: SetByResourceId +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -FrontendIPConfiguration Specifies front-end IP configuration object for the HTTP listener. @@ -168,6 +215,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HostNames +Host names + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name Specifies the name of the HTTP listener that this cmdlet creates. @@ -243,43 +305,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -FirewallPolicy -Specifies the object reference to a top-level firewall policy. -The object reference can be created by using New-AzApplicationGatewayWebApplicationFirewallPolicy cmdlet. -$firewallPolicy = New-AzApplicationGatewayFirewallPolicy -Name "wafPolicy1" -ResourceGroup "rgName" -A firewall policy created using the above commandlet can be referred at a path-rule level. -he above command would create a default policy settings and managed rules. -Instead of the default values, users can specify PolicySettings, ManagedRules by using New-AzApplicationGatewayFirewallPolicySettings and New-AzApplicationGatewayFirewallPolicyManagedRules respectively. - -```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -FirewallPolicyId -Specifies the ID of an existing top-level web application firewall resource. -Firewall policy IDs can be returned by using the Get-AzApplicationGatewayWebApplicationFirewallPolicy cmdlet. -After we have the ID you can use *FirewallPolicyId* parameter instead of *FirewallPolicy* parameter. -For instance: --FirewallPolicyId “/subscriptions//resourceGroups//providers/Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies/” - -```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy -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). diff --git a/src/Network/Network/help/Set-AzApplicationGatewayHttpListener.md b/src/Network/Network/help/Set-AzApplicationGatewayHttpListener.md index 45ce4874b3a7..d6910ee4ff15 100644 --- a/src/Network/Network/help/Set-AzApplicationGatewayHttpListener.md +++ b/src/Network/Network/help/Set-AzApplicationGatewayHttpListener.md @@ -17,7 +17,8 @@ Modifies an HTTP listener for an application gateway. ``` Set-AzApplicationGatewayHttpListener -ApplicationGateway -Name [-FrontendIPConfigurationId ] [-FrontendPortId ] [-SslCertificateId ] - [-HostName ] [-RequireServerNameIndication ] -Protocol + [-FirewallPolicyId ] [-HostName ] [-HostNames ] + [-RequireServerNameIndication ] -Protocol [-CustomErrorConfiguration ] [-DefaultProfile ] [] ``` @@ -26,8 +27,10 @@ Set-AzApplicationGatewayHttpListener -ApplicationGateway ``` Set-AzApplicationGatewayHttpListener -ApplicationGateway -Name [-FrontendIPConfiguration ] - [-FrontendPort ] [-SslCertificate ] - [-HostName ] [-RequireServerNameIndication ] -Protocol + [-FrontendPort ] + [-FirewallPolicy ] + [-SslCertificate ] [-HostName ] [-HostNames ] + [-RequireServerNameIndication ] -Protocol [-CustomErrorConfiguration ] [-DefaultProfile ] [] ``` @@ -46,6 +49,15 @@ PS C:\> $AppGw = Set-AzApplicationGatewayHttpListener -ApplicationGateway $AppGw 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 HTTP listener for the gateway to use the front-end configuration stored in $FIP01 with the HTTP protocol on port 80. +### Example 2: Add a HTTPS listener with SSL and HostNames +``` +PS C:\>$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" +PS C:\> $AppGw = Set-AzApplicationGatewayHttpListener -ApplicationGateway $AppGw -Name "Listener01" -Protocol "Https" -FrontendIpConfiguration $FIP01 -FrontendPort $FP01 -SslCertificate $SSLCert01 -HostNames "*.contoso.com,www.microsoft.com" +``` + +The first command gets the application gateway and stores it in the $AppGw variable. +The second command adds the listener, which uses the HTTPS protocol, with SSL Certificates and HostNames, to the application gateway. + ## PARAMETERS ### -ApplicationGateway @@ -93,6 +105,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -FirewallPolicy +FirewallPolicy + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy +Parameter Sets: SetByResource +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FirewallPolicyId +FirewallPolicyId + +```yaml +Type: System.String +Parameter Sets: SetByResourceId +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -FrontendIPConfiguration Specifies the front-end IP address of the application gateway. @@ -168,6 +210,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HostNames +Host names + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name Specifies the name of the HTTP listener. diff --git a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv index 819e66629d81..91800d8f4dbb 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv @@ -318,3 +318,6 @@ "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRulesCommand","New-AzApplicationGatewayFirewallPolicyManagedRule","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRule 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.NewAzureApplicationGatewayFirewallPolicySettingCommand","New-AzApplicationGatewayFirewallPolicySetting","1","8100","New-AzApplicationGatewayFirewallPolicySetting 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.AddAzureRmVirtualHubRouteTableCommand","Add-AzVirtualHubRouteTable","1","8100","Add-AzVirtualHubRouteTable 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.AddAzureApplicationGatewayHttpListenerCommand","Add-AzApplicationGatewayHttpListener","1","8410","Parameter HostNames of cmdlet Add-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand","New-AzApplicationGatewayHttpListener","1","8410","Parameter HostNames of cmdlet New-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand","Set-AzApplicationGatewayHttpListener","1","8410","Parameter HostNames of cmdlet Set-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name."