diff --git a/src/Accounts/Accounts/AzureRmAlias/Mappings.json b/src/Accounts/Accounts/AzureRmAlias/Mappings.json
index 9b2743fe0c42..a1acd851037f 100644
--- a/src/Accounts/Accounts/AzureRmAlias/Mappings.json
+++ b/src/Accounts/Accounts/AzureRmAlias/Mappings.json
@@ -1340,6 +1340,7 @@
"New-AzApplicationGatewayRewriteRule": "New-AzureRmApplicationGatewayRewriteRule",
"New-AzApplicationGatewayRewriteRuleActionSet": "New-AzureRmApplicationGatewayRewriteRuleActionSet",
"New-AzApplicationGatewayRewriteRuleHeaderConfiguration": "New-AzureRmApplicationGatewayRewriteRuleHeaderConfiguration",
+ "New-AzApplicationGatewayRewriteRuleUrlConfiguration": "New-AzureRmApplicationGatewayRewriteRuleUrlConfiguration",
"New-AzApplicationGatewayRewriteRuleCondition": "New-AzureRmApplicationGatewayRewriteRuleCondition",
"Add-AzApplicationGatewayRedirectConfiguration": "Add-AzureRmApplicationGatewayRedirectConfiguration",
"Get-AzApplicationGatewayRedirectConfiguration": "Get-AzureRmApplicationGatewayRedirectConfiguration",
diff --git a/src/Network/Network.Test/Network.Test.csproj b/src/Network/Network.Test/Network.Test.csproj
index 8e2f9bf53c92..20aacc06d591 100644
--- a/src/Network/Network.Test/Network.Test.csproj
+++ b/src/Network/Network.Test/Network.Test.csproj
@@ -30,4 +30,10 @@
+
+
+ Always
+
+
+
diff --git a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs
index ff786e515d6f..cbb16afa0dfc 100644
--- a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs
+++ b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.cs
@@ -121,5 +121,13 @@ public void TestApplicationGatewayWithFirewallPolicy()
{
TestRunner.RunTestScript(string.Format("Test-ApplicationGatewayWithFirewallPolicy -baseDir '{0}'", AppDomain.CurrentDomain.BaseDirectory));
}
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ [Trait(Category.Owner, NrpTeamAlias.nvadev)]
+ public void TestApplicationGatewayCRUDRewriteRuleSetUrlConfiguration()
+ {
+ TestRunner.RunTestScript(string.Format("Test-ApplicationGatewayCRUDRewriteRuleSetWithUrlConfiguration -baseDir '{0}'", AppDomain.CurrentDomain.BaseDirectory));
+ }
}
}
diff --git a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1 b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1
index c28c7858c89e..b2632b431527 100644
--- a/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1
+++ b/src/Network/Network.Test/ScenarioTests/ApplicationGatewayTests.ps1
@@ -973,6 +973,262 @@ function Test-ApplicationGatewayCRUDRewriteRuleSetWithConditions
}
}
+function Test-ApplicationGatewayCRUDRewriteRuleSetWithUrlConfiguration
+{
+ param
+ (
+ $basedir = "./"
+ )
+
+ # Setup
+ $location = Get-ProviderLocation "Microsoft.Network/applicationGateways" "north europe"
+
+ $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 81
+ $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
+
+ # sku
+ $sku = New-AzApplicationGatewaySku -Name WAF_v2 -Tier WAF_v2
+
+ $autoscaleConfig = New-AzApplicationGatewayAutoscaleConfiguration -MinCapacity 3
+ Assert-AreEqual $autoscaleConfig.MinCapacity 3
+
+ $headerConfiguration1 = New-AzApplicationGatewayRewriteRuleHeaderConfiguration -HeaderName "abc" -HeaderValue "def"
+ #url configuration with modified path only
+ $urlConfiguration1 = New-AzApplicationGatewayRewriteRuleUrlConfiguration -ModifiedPath "/abc"
+ $actionSet1 = New-AzApplicationGatewayRewriteRuleActionSet -RequestHeaderConfiguration $headerConfiguration1 -UrlConfiguration $urlConfiguration1
+ $rewriteRule1 = New-AzApplicationGatewayRewriteRule -Name "rewriterule1" -ActionSet $actionSet1
+
+ #url configuration with modified path and query string
+ $urlConfiguration2 = New-AzApplicationGatewayRewriteRuleUrlConfiguration -ModifiedPath "/def" -ModifiedQueryString "a=b&c=d%20f"
+ $actionSet2 = New-AzApplicationGatewayRewriteRuleActionSet -UrlConfiguration $urlConfiguration2
+ $rewriteRule2 = New-AzApplicationGatewayRewriteRule -Name "rewriterule2" -ActionSet $actionSet2
+
+ #url configuration with query string only
+ $urlConfiguration3 = New-AzApplicationGatewayRewriteRuleUrlConfiguration -ModifiedQueryString "a=b&c=d%20f1"
+ $actionSet3 = New-AzApplicationGatewayRewriteRuleActionSet -UrlConfiguration $urlConfiguration3
+ $rewriteRule3 = New-AzApplicationGatewayRewriteRule -Name "rewriterule3" -ActionSet $actionSet3
+
+ #url configuration with query string, path and reroute
+ $urlConfiguration4 = New-AzApplicationGatewayRewriteRuleUrlConfiguration -ModifiedPath "/def2" -ModifiedQueryString "a=b&c=d%20f12" -Reroute
+ $actionSet4 = New-AzApplicationGatewayRewriteRuleActionSet -UrlConfiguration $urlConfiguration4
+ $rewriteRule4 = New-AzApplicationGatewayRewriteRule -Name "rewriterule4" -ActionSet $actionSet4
+
+ $rewriteRules = New-Object System.Collections.ArrayList
+
+ $rewriteRules.Add($rewriteRule1);
+ $rewriteRules.Add($rewriteRule2);
+ $rewriteRules.Add($rewriteRule3);
+ $rewriteRules.Add($rewriteRule4);
+
+ $rewriteRuleSet = New-AzApplicationGatewayRewriteRuleSet -Name $rewriteRuleSetName -RewriteRule $rewriteRules
+
+ $videoPathRule = New-AzApplicationGatewayPathRuleConfig -Name $PathRuleName -Paths "/video" -RewriteRuleSet $rewriteRuleSet -BackendAddressPool $pool -BackendHttpSettings $poolSetting01
+ Assert-AreEqual $videoPathRule.RewriteRuleSet.Id $rewriteRuleSet.Id
+
+ $urlPathMap = New-AzApplicationGatewayUrlPathMapConfig -Name $urlPathMapName -PathRules $videoPathRule -DefaultBackendAddressPool $pool -DefaultBackendHttpSettings $poolSetting01
+
+ $probe = New-AzApplicationGatewayProbeConfig -Name $probeName -Protocol Http -Path "/path/path.htm" -Interval 89 -Timeout 88 -UnhealthyThreshold 8 -MinServers 1 -PickHostNameFromBackendHttpSettings
+
+ #rule
+ $rule01 = New-AzApplicationGatewayRequestRoutingRule -Name $rule01Name -RuleType PathBasedRouting -HttpListener $listener01 -UrlPathMap $urlPathMap
+
+ #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 -RedirectConfiguration $redirectConfig -Probe $probe -RewriteRuleSet $rewriteRuleSet
+
+ Assert-AreEqual $appgw.BackendHttpSettingsCollection.Count 1
+ Assert-AreEqual $appgw.HttpListeners.Count 1
+ Assert-AreEqual $appgw.RequestRoutingRules.Count 1
+
+ Assert-NotNull $appgw.RewriteRuleSets
+ Assert-AreEqual 1 $appgw.RewriteRuleSets.Count
+ Assert-AreEqual 4 $appgw.RewriteRuleSets.RewriteRules.Count
+
+ Assert-AreEqual "rewriterule1" $appgw.RewriteRuleSets.RewriteRules[0].Name
+ Assert-NotNull $appgw.RewriteRuleSets.RewriteRules[0].ActionSet
+ Assert-AreEqual "/abc" $appgw.RewriteRuleSets.RewriteRules[0].ActionSet.UrlConfiguration.ModifiedPath
+ Assert-Null $appgw.RewriteRuleSets.RewriteRules[0].ActionSet.UrlConfiguration.ModifiedQueryString
+ Assert-AreEqual $false $appgw.RewriteRuleSets.RewriteRules[0].ActionSet.UrlConfiguration.Reroute
+
+ Assert-AreEqual "rewriterule2" $appgw.RewriteRuleSets.RewriteRules[1].Name
+ Assert-NotNull $appgw.RewriteRuleSets.RewriteRules[1].ActionSet
+ Assert-AreEqual "/def" $appgw.RewriteRuleSets.RewriteRules[1].ActionSet.UrlConfiguration.ModifiedPath
+ Assert-AreEqual "a=b&c=d%20f" $appgw.RewriteRuleSets.RewriteRules[1].ActionSet.UrlConfiguration.ModifiedQueryString
+ Assert-AreEqual $false $appgw.RewriteRuleSets.RewriteRules[1].ActionSet.UrlConfiguration.Reroute
+
+ Assert-AreEqual "rewriterule3" $appgw.RewriteRuleSets.RewriteRules[2].Name
+ Assert-NotNull $appgw.RewriteRuleSets.RewriteRules[2].ActionSet
+ Assert-Null $appgw.RewriteRuleSets.RewriteRules[2].ActionSet.UrlConfiguration.ModifiedPath
+ Assert-AreEqual "a=b&c=d%20f1" $appgw.RewriteRuleSets.RewriteRules[2].ActionSet.UrlConfiguration.ModifiedQueryString
+ Assert-AreEqual $false $appgw.RewriteRuleSets.RewriteRules[2].ActionSet.UrlConfiguration.Reroute
+
+ Assert-AreEqual "rewriterule4" $appgw.RewriteRuleSets.RewriteRules[3].Name
+ Assert-NotNull $appgw.RewriteRuleSets.RewriteRules[3].ActionSet
+ Assert-AreEqual "/def2" $appgw.RewriteRuleSets.RewriteRules[3].ActionSet.UrlConfiguration.ModifiedPath
+ Assert-AreEqual "a=b&c=d%20f12" $appgw.RewriteRuleSets.RewriteRules[3].ActionSet.UrlConfiguration.ModifiedQueryString
+ Assert-AreEqual $true $appgw.RewriteRuleSets.RewriteRules[3].ActionSet.UrlConfiguration.Reroute
+
+ # Get Application Gateway
+ $appgw = Get-AzApplicationGateway -Name $appgwName -ResourceGroupName $rgname
+
+ Assert-AreEqual $appgw.BackendHttpSettingsCollection.Count 1
+ Assert-AreEqual $appgw.HttpListeners.Count 1
+ Assert-AreEqual $appgw.RequestRoutingRules.Count 1
+
+ Assert-NotNull $appgw.RewriteRuleSets
+ Assert-AreEqual 1 $appgw.RewriteRuleSets.Count
+ Assert-AreEqual 4 $appgw.RewriteRuleSets.RewriteRules.Count
+
+ Assert-AreEqual "rewriterule1" $appgw.RewriteRuleSets.RewriteRules[0].Name
+ Assert-NotNull $appgw.RewriteRuleSets.RewriteRules[0].ActionSet
+ Assert-AreEqual "/abc" $appgw.RewriteRuleSets.RewriteRules[0].ActionSet.UrlConfiguration.ModifiedPath
+ Assert-Null $appgw.RewriteRuleSets.RewriteRules[0].ActionSet.UrlConfiguration.ModifiedQueryString
+ Assert-AreEqual $false $appgw.RewriteRuleSets.RewriteRules[0].ActionSet.UrlConfiguration.Reroute
+
+ Assert-AreEqual "rewriterule2" $appgw.RewriteRuleSets.RewriteRules[1].Name
+ Assert-NotNull $appgw.RewriteRuleSets.RewriteRules[1].ActionSet
+ Assert-AreEqual "/def" $appgw.RewriteRuleSets.RewriteRules[1].ActionSet.UrlConfiguration.ModifiedPath
+ Assert-AreEqual "a=b&c=d%20f" $appgw.RewriteRuleSets.RewriteRules[1].ActionSet.UrlConfiguration.ModifiedQueryString
+ Assert-AreEqual $false $appgw.RewriteRuleSets.RewriteRules[1].ActionSet.UrlConfiguration.Reroute
+
+ Assert-AreEqual "rewriterule3" $appgw.RewriteRuleSets.RewriteRules[2].Name
+ Assert-NotNull $appgw.RewriteRuleSets.RewriteRules[2].ActionSet
+ Assert-Null $appgw.RewriteRuleSets.RewriteRules[2].ActionSet.UrlConfiguration.ModifiedPath
+ Assert-AreEqual "a=b&c=d%20f1" $appgw.RewriteRuleSets.RewriteRules[2].ActionSet.UrlConfiguration.ModifiedQueryString
+ Assert-AreEqual $false $appgw.RewriteRuleSets.RewriteRules[2].ActionSet.UrlConfiguration.Reroute
+
+ Assert-AreEqual "rewriterule4" $appgw.RewriteRuleSets.RewriteRules[3].Name
+ Assert-NotNull $appgw.RewriteRuleSets.RewriteRules[3].ActionSet
+ Assert-AreEqual "/def2" $appgw.RewriteRuleSets.RewriteRules[3].ActionSet.UrlConfiguration.ModifiedPath
+ Assert-AreEqual "a=b&c=d%20f12" $appgw.RewriteRuleSets.RewriteRules[3].ActionSet.UrlConfiguration.ModifiedQueryString
+ Assert-AreEqual $true $appgw.RewriteRuleSets.RewriteRules[3].ActionSet.UrlConfiguration.Reroute
+
+ # Updating Url Configuration
+ $appgw.RewriteRuleSets.RewriteRules[0].ActionSet.UrlConfiguration.ModifiedPath = "/abc1"
+ $appgw.RewriteRuleSets.RewriteRules[0].ActionSet.UrlConfiguration.ModifiedQueryString = "a=b&c=d"
+
+ $appgw.RewriteRuleSets.RewriteRules[3].ActionSet.UrlConfiguration.Reroute = $false
+
+ # Adding listener and request routing rule to start slow path update
+ $listener02 = New-AzApplicationGatewayHttpListener -Name $listener02Name -Protocol Http -FrontendIPConfiguration $fipconfig -FrontendPort $fp02 -RequireServerNameIndication false
+ $appgw.HttpListeners.Add($listener02)
+ $rule02 = New-AzApplicationGatewayRequestRoutingRule -Name $rule02Name -RuleType PathBasedRouting -HttpListener $listener02 -UrlPathMap $urlPathMap
+ $appgw.RequestRoutingRules.Add($rule02)
+
+ $appgw = Set-AzApplicationGateway -ApplicationGateway $appgw
+
+ Assert-AreEqual $appgw.BackendHttpSettingsCollection.Count 1
+ Assert-AreEqual $appgw.HttpListeners.Count 2
+ Assert-AreEqual $appgw.RequestRoutingRules.Count 2
+
+ Assert-NotNull $appgw.RewriteRuleSets
+ Assert-AreEqual 1 $appgw.RewriteRuleSets.Count
+ Assert-AreEqual 4 $appgw.RewriteRuleSets.RewriteRules.Count
+
+ Assert-AreEqual "rewriterule1" $appgw.RewriteRuleSets.RewriteRules[0].Name
+ Assert-NotNull $appgw.RewriteRuleSets.RewriteRules[0].ActionSet
+ Assert-AreEqual "/abc1" $appgw.RewriteRuleSets.RewriteRules[0].ActionSet.UrlConfiguration.ModifiedPath
+ Assert-AreEqual "a=b&c=d" $appgw.RewriteRuleSets.RewriteRules[0].ActionSet.UrlConfiguration.ModifiedQueryString
+ Assert-AreEqual $false $appgw.RewriteRuleSets.RewriteRules[0].ActionSet.UrlConfiguration.Reroute
+
+ Assert-AreEqual "rewriterule2" $appgw.RewriteRuleSets.RewriteRules[1].Name
+ Assert-NotNull $appgw.RewriteRuleSets.RewriteRules[1].ActionSet
+ Assert-AreEqual "/def" $appgw.RewriteRuleSets.RewriteRules[1].ActionSet.UrlConfiguration.ModifiedPath
+ Assert-AreEqual "a=b&c=d%20f" $appgw.RewriteRuleSets.RewriteRules[1].ActionSet.UrlConfiguration.ModifiedQueryString
+ Assert-AreEqual $false $appgw.RewriteRuleSets.RewriteRules[1].ActionSet.UrlConfiguration.Reroute
+
+ Assert-AreEqual "rewriterule3" $appgw.RewriteRuleSets.RewriteRules[2].Name
+ Assert-NotNull $appgw.RewriteRuleSets.RewriteRules[2].ActionSet
+ Assert-Null $appgw.RewriteRuleSets.RewriteRules[2].ActionSet.UrlConfiguration.ModifiedPath
+ Assert-AreEqual "a=b&c=d%20f1" $appgw.RewriteRuleSets.RewriteRules[2].ActionSet.UrlConfiguration.ModifiedQueryString
+ Assert-AreEqual $false $appgw.RewriteRuleSets.RewriteRules[2].ActionSet.UrlConfiguration.Reroute
+
+ Assert-AreEqual "rewriterule4" $appgw.RewriteRuleSets.RewriteRules[3].Name
+ Assert-NotNull $appgw.RewriteRuleSets.RewriteRules[3].ActionSet
+ Assert-AreEqual "/def2" $appgw.RewriteRuleSets.RewriteRules[3].ActionSet.UrlConfiguration.ModifiedPath
+ Assert-AreEqual "a=b&c=d%20f12" $appgw.RewriteRuleSets.RewriteRules[3].ActionSet.UrlConfiguration.ModifiedQueryString
+ Assert-AreEqual $false $appgw.RewriteRuleSets.RewriteRules[3].ActionSet.UrlConfiguration.Reroute
+
+ # Stop Application Gateway
+ $getgw1 = Stop-AzApplicationGateway -ApplicationGateway $appgw
+
+ Assert-AreEqual "Stopped" $getgw1.OperationalState
+
+ # Delete Application Gateway
+ Remove-AzApplicationGateway -Name $appgwName -ResourceGroupName $rgname -Force
+ }
+ finally
+ {
+ # Cleanup
+ Clean-ResourceGroup $rgname
+ }
+}
+
<#
.SYNOPSIS
Application gateway v2 tests
diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestApplicationGatewayCRUDRewriteRuleSetUrlConfiguration.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestApplicationGatewayCRUDRewriteRuleSetUrlConfiguration.json
new file mode 100644
index 000000000000..552b4cd79e76
--- /dev/null
+++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.ApplicationGatewayTests/TestApplicationGatewayCRUDRewriteRuleSetUrlConfiguration.json
@@ -0,0 +1,9839 @@
+{
+ "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": [
+ "25e8a4c2-6272-4c53-8108-af96f74c02d1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "b4fad79a-524d-48fd-9820-16439c44b40a"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4fad79a-524d-48fd-9820-16439c44b40a"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T150211Z:b4fad79a-524d-48fd-9820-16439c44b40a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:10 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/ps9260?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlZ3JvdXBzL3BzOTI2MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b0e9fb9f-a998-4454-848c-d4e815e71e5e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "34"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "694389b4-1a24-4318-82d9-d30022a9a276"
+ ],
+ "x-ms-correlation-request-id": [
+ "694389b4-1a24-4318-82d9-d30022a9a276"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T150215Z:694389b4-1a24-4318-82d9-d30022a9a276"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:14 GMT"
+ ],
+ "Content-Length": [
+ "170"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260\",\r\n \"name\": \"ps9260\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODkwOD9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1f77e9af-7841-458b-9db0-2942c4a2ea6f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "3cb97884-f67a-4d4b-816b-f336a1a4c7ce"
+ ],
+ "x-ms-correlation-request-id": [
+ "3cb97884-f67a-4d4b-816b-f336a1a4c7ce"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T150216Z:3cb97884-f67a-4d4b-816b-f336a1a4c7ce"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:16 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/ps8908' under resource group 'ps9260' was not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODkwOD9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"eb9abd86-37a2-462e-af06-b0b007201d7e\""
+ ],
+ "x-ms-request-id": [
+ "c742a2c4-393f-4f2e-b0b7-d623cb5a619d"
+ ],
+ "x-ms-correlation-request-id": [
+ "56ec4952-fef6-4e89-be8c-40d16bf8e0c2"
+ ],
+ "x-ms-arm-service-request-id": [
+ "cd1ca57c-7280-481e-815e-3344f58bea9a"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150228Z:56ec4952-fef6-4e89-be8c-40d16bf8e0c2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:27 GMT"
+ ],
+ "Content-Length": [
+ "1273"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps8908\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908\",\r\n \"etag\": \"W/\\\"eb9abd86-37a2-462e-af06-b0b007201d7e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2a362538-bc04-4baf-9034-b83144f2e706\",\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\": \"ps1037\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\",\r\n \"etag\": \"W/\\\"eb9abd86-37a2-462e-af06-b0b007201d7e\\\"\",\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/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODkwOD9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c203366a-8f6f-4138-b3c7-e935bb43b44f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"eb9abd86-37a2-462e-af06-b0b007201d7e\""
+ ],
+ "x-ms-request-id": [
+ "ae3b98a3-97b5-49ce-98f8-29307f5a18d7"
+ ],
+ "x-ms-correlation-request-id": [
+ "74a7e8f8-65eb-4d44-a46a-27539190d7d3"
+ ],
+ "x-ms-arm-service-request-id": [
+ "ac894b26-a36e-44ae-ae54-f464b9250a1c"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150228Z:74a7e8f8-65eb-4d44-a46a-27539190d7d3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:27 GMT"
+ ],
+ "Content-Length": [
+ "1273"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps8908\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908\",\r\n \"etag\": \"W/\\\"eb9abd86-37a2-462e-af06-b0b007201d7e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2a362538-bc04-4baf-9034-b83144f2e706\",\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\": \"ps1037\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\",\r\n \"etag\": \"W/\\\"eb9abd86-37a2-462e-af06-b0b007201d7e\\\"\",\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/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODkwOD9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "792f3d6a-ee59-4b78-9846-21ad6c94b4ce"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"eb9abd86-37a2-462e-af06-b0b007201d7e\""
+ ],
+ "x-ms-request-id": [
+ "54efffbb-557b-4d33-be03-cb6ab19ae854"
+ ],
+ "x-ms-correlation-request-id": [
+ "b3ccc752-5a1a-47c8-ad8f-c08b7b408a2f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e349a6e7-75f7-4571-80ba-046a4403862e"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150228Z:b3ccc752-5a1a-47c8-ad8f-c08b7b408a2f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:28 GMT"
+ ],
+ "Content-Length": [
+ "1273"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps8908\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908\",\r\n \"etag\": \"W/\\\"eb9abd86-37a2-462e-af06-b0b007201d7e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2a362538-bc04-4baf-9034-b83144f2e706\",\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\": \"ps1037\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\",\r\n \"etag\": \"W/\\\"eb9abd86-37a2-462e-af06-b0b007201d7e\\\"\",\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/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODkwOD9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "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\": \"ps1037\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a8c50005-6ead-4942-b7ab-ff9be8a923b3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "625"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "3"
+ ],
+ "x-ms-request-id": [
+ "a0c16b3f-4efa-48df-9c05-25ef410c143a"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/a0c16b3f-4efa-48df-9c05-25ef410c143a?api-version=2019-11-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ca4a85a-fafa-4ed1-9780-dff4ebf37b0c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "7b5e605e-cb06-4762-9a99-2ce6028e3ed4"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150224Z:4ca4a85a-fafa-4ed1-9780-dff4ebf37b0c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:23 GMT"
+ ],
+ "Content-Length": [
+ "1271"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps8908\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908\",\r\n \"etag\": \"W/\\\"d6ade879-c4e6-4122-a021-ab257c28dc99\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2a362538-bc04-4baf-9034-b83144f2e706\",\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\": \"ps1037\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\",\r\n \"etag\": \"W/\\\"d6ade879-c4e6-4122-a021-ab257c28dc99\\\"\",\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/northeurope/operations/a0c16b3f-4efa-48df-9c05-25ef410c143a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hMGMxNmIzZi00ZWZhLTQ4ZGYtOWMwNS0yNWVmNDEwYzE0M2E/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ef786f60-13c3-4e25-bed1-fffe18ccedd5"
+ ],
+ "x-ms-correlation-request-id": [
+ "94af8f39-3be3-4a56-93dd-00c2b45d1430"
+ ],
+ "x-ms-arm-service-request-id": [
+ "71842c94-cbbf-425a-8876-8eec850d7a62"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150227Z:94af8f39-3be3-4a56-93dd-00c2b45d1430"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:27 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/ps9260/providers/Microsoft.Network/virtualNetworks/ps3365?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzM2NT9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fd4c1129-8860-4e52-b14a-4527b5eca3b0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "d8811403-5ab5-4c05-8003-82c02056cb3d"
+ ],
+ "x-ms-correlation-request-id": [
+ "d8811403-5ab5-4c05-8003-82c02056cb3d"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T150229Z:d8811403-5ab5-4c05-8003-82c02056cb3d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:28 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/ps3365' under resource group 'ps9260' was not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps3365?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzM2NT9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"d211fd81-e379-49e3-834d-274c95fcb006\""
+ ],
+ "x-ms-request-id": [
+ "f25c105d-bfb6-4c66-9be4-10ae2bfcf46e"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b827d7a-ea0d-4015-adc0-7ab0e55f52d2"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f539355b-4172-4172-b042-b54abcea3226"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150240Z:3b827d7a-ea0d-4015-adc0-7ab0e55f52d2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:40 GMT"
+ ],
+ "Content-Length": [
+ "1272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps3365\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps3365\",\r\n \"etag\": \"W/\\\"d211fd81-e379-49e3-834d-274c95fcb006\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3d22a466-0cda-4250-af28-1211e31470e0\",\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\": \"ps1081\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps3365/subnets/ps1081\",\r\n \"etag\": \"W/\\\"d211fd81-e379-49e3-834d-274c95fcb006\\\"\",\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/ps9260/providers/Microsoft.Network/virtualNetworks/ps3365?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzM2NT9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7365974f-2037-437d-9e3b-eb07351eeb80"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"d211fd81-e379-49e3-834d-274c95fcb006\""
+ ],
+ "x-ms-request-id": [
+ "985b9334-8946-4105-b859-57dce7b4f9a0"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6eb51bb-d86b-4b8d-8317-19b31e5abc89"
+ ],
+ "x-ms-arm-service-request-id": [
+ "6a7bcefd-4b2b-4469-b019-281c66f729a0"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150241Z:c6eb51bb-d86b-4b8d-8317-19b31e5abc89"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:40 GMT"
+ ],
+ "Content-Length": [
+ "1272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps3365\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps3365\",\r\n \"etag\": \"W/\\\"d211fd81-e379-49e3-834d-274c95fcb006\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3d22a466-0cda-4250-af28-1211e31470e0\",\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\": \"ps1081\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps3365/subnets/ps1081\",\r\n \"etag\": \"W/\\\"d211fd81-e379-49e3-834d-274c95fcb006\\\"\",\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/ps9260/providers/Microsoft.Network/virtualNetworks/ps3365?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzM2NT9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d61e903d-6072-447e-8c2a-be8fe61d5c94"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"d211fd81-e379-49e3-834d-274c95fcb006\""
+ ],
+ "x-ms-request-id": [
+ "14272086-733e-49fb-a54e-55ac6cf318c5"
+ ],
+ "x-ms-correlation-request-id": [
+ "bde07373-0e19-4fc0-b2b8-e6702aeddcd3"
+ ],
+ "x-ms-arm-service-request-id": [
+ "d4baebca-b7eb-410c-9cc4-20b390d859e4"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150241Z:bde07373-0e19-4fc0-b2b8-e6702aeddcd3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:40 GMT"
+ ],
+ "Content-Length": [
+ "1272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps3365\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps3365\",\r\n \"etag\": \"W/\\\"d211fd81-e379-49e3-834d-274c95fcb006\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3d22a466-0cda-4250-af28-1211e31470e0\",\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\": \"ps1081\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps3365/subnets/ps1081\",\r\n \"etag\": \"W/\\\"d211fd81-e379-49e3-834d-274c95fcb006\\\"\",\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/ps9260/providers/Microsoft.Network/virtualNetworks/ps3365?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzM2NT9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "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\": \"ps1081\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "216718de-eece-4364-8bd6-00f726ddc38e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "624"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "3"
+ ],
+ "x-ms-request-id": [
+ "a33daff4-b3bc-4034-9124-e4ca36806427"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/a33daff4-b3bc-4034-9124-e4ca36806427?api-version=2019-11-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "970c0022-5d83-46d9-83dd-2fdaf133fbed"
+ ],
+ "x-ms-arm-service-request-id": [
+ "dfe2062d-d4f3-49a9-b157-b88a62a8db1e"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150236Z:970c0022-5d83-46d9-83dd-2fdaf133fbed"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:36 GMT"
+ ],
+ "Content-Length": [
+ "1270"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps3365\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps3365\",\r\n \"etag\": \"W/\\\"202bf98c-7905-43a2-932f-d7fe07884a50\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3d22a466-0cda-4250-af28-1211e31470e0\",\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\": \"ps1081\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps3365/subnets/ps1081\",\r\n \"etag\": \"W/\\\"202bf98c-7905-43a2-932f-d7fe07884a50\\\"\",\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/northeurope/operations/a33daff4-b3bc-4034-9124-e4ca36806427?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hMzNkYWZmNC1iM2JjLTQwMzQtOTEyNC1lNGNhMzY4MDY0Mjc/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ba5a113e-5f4f-4d78-b53c-f20d30f59b55"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee08214a-0846-4e10-851d-f428fd20baa3"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e0526945-4cd4-4f00-9557-89e4dc8cc033"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150240Z:ee08214a-0846-4e10-851d-f428fd20baa3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02: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/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0OTk2P2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "35256808-a99d-483c-91cc-66c61c4c1cfe"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "0ca24b3b-b7e3-48bb-8e49-6738ed9f584b"
+ ],
+ "x-ms-correlation-request-id": [
+ "0ca24b3b-b7e3-48bb-8e49-6738ed9f584b"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T150242Z:0ca24b3b-b7e3-48bb-8e49-6738ed9f584b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:41 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/ps4996' under resource group 'ps9260' was not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0OTk2P2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"cbf9e39e-6c15-4702-b0c8-7c20c2319564\""
+ ],
+ "x-ms-request-id": [
+ "335a0aac-6af6-41e3-a06f-ca249020496d"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed599c52-aa06-4fe4-8152-52e2c57898d3"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3452b9b9-b2ba-451a-81bf-577b2c5d9db1"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150250Z:ed599c52-aa06-4fe4-8152-52e2c57898d3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:50 GMT"
+ ],
+ "Content-Length": [
+ "634"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps4996\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996\",\r\n \"etag\": \"W/\\\"cbf9e39e-6c15-4702-b0c8-7c20c2319564\\\"\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ff8bcc52-16e7-450f-a6f6-14770049c1d8\",\r\n \"ipAddress\": \"40.127.218.61\",\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/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0OTk2P2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6510b09f-d97a-4e28-aba1-931dab1aa5b0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"cbf9e39e-6c15-4702-b0c8-7c20c2319564\""
+ ],
+ "x-ms-request-id": [
+ "c831539e-43e7-4e57-a758-48e25f97c991"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b8e39b3-14a6-48f6-a414-e6b5beeff04e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "5138c52e-b192-4825-ac7b-f8cff9c2bde7"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150250Z:7b8e39b3-14a6-48f6-a414-e6b5beeff04e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:50 GMT"
+ ],
+ "Content-Length": [
+ "634"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps4996\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996\",\r\n \"etag\": \"W/\\\"cbf9e39e-6c15-4702-b0c8-7c20c2319564\\\"\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ff8bcc52-16e7-450f-a6f6-14770049c1d8\",\r\n \"ipAddress\": \"40.127.218.61\",\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/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0OTk2P2FwaS12ZXJzaW9uPTIwMTktMTEtMDE=",
+ "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\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c03d0385-dce6-45de-98ca-ae689d972e75"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "178"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "1"
+ ],
+ "x-ms-request-id": [
+ "88b46a1b-ac41-43c1-a1b6-bb756a339ac9"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/88b46a1b-ac41-43c1-a1b6-bb756a339ac9?api-version=2019-11-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "d386c2b5-87b7-43bf-90f2-f8ac66c8a68c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "49a08fa0-48a4-4d37-80b1-83f8d71ec9af"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150248Z:d386c2b5-87b7-43bf-90f2-f8ac66c8a68c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:48 GMT"
+ ],
+ "Content-Length": [
+ "598"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps4996\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996\",\r\n \"etag\": \"W/\\\"7a3673d5-cd91-4df8-a4cc-d6ed0b37a825\\\"\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ff8bcc52-16e7-450f-a6f6-14770049c1d8\",\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/northeurope/operations/88b46a1b-ac41-43c1-a1b6-bb756a339ac9?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy84OGI0NmExYi1hYzQxLTQzYzEtYTFiNi1iYjc1NmEzMzlhYzk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "fb6f522f-2e70-4534-a3a2-040805321e59"
+ ],
+ "x-ms-correlation-request-id": [
+ "d79e619b-363c-412c-ab5b-8f8a064b74b8"
+ ],
+ "x-ms-arm-service-request-id": [
+ "327161fe-f335-42cc-80ad-bd75b965ecce"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150250Z:d79e619b-363c-412c-ab5b-8f8a064b74b8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:49 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczE0Nzc/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "89467ce7-1520-4ddb-a644-1d5c6dc54c2b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "c5c7e812-4c65-488d-aae9-83c3aa01c08b"
+ ],
+ "x-ms-correlation-request-id": [
+ "c5c7e812-4c65-488d-aae9-83c3aa01c08b"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T150251Z:c5c7e812-4c65-488d-aae9-83c3aa01c08b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:51 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/ps1477' under resource group 'ps9260' was not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczE0Nzc/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\""
+ ],
+ "x-ms-request-id": [
+ "60a719de-0e03-46b4-a958-400dddb96cc4"
+ ],
+ "x-ms-correlation-request-id": [
+ "fdce5c3f-4ab5-4536-a228-a4e3b1afb9aa"
+ ],
+ "x-ms-arm-service-request-id": [
+ "475def7d-1b24-44a7-9320-d0133719015a"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150645Z:fdce5c3f-4ab5-4536-a228-a4e3b1afb9aa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:06:45 GMT"
+ ],
+ "Content-Length": [
+ "14328"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1477\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"61668363-eb1e-48f4-946d-168a968558bc\",\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\": \"ps340\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/gatewayIPConfigurations/ps340\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps6876\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps2533\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps5393\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 81\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps8186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps3936\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps4441\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\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\": \"ps1722\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps7442\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\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\": \"ps9342\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps860\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/probes/ps860\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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\": \"ps4622\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule1\",\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 \"urlConfiguration\": {\r\n \"modifiedPath\": \"/abc\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule2\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule3\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedQueryString\": \"a=b&c=d%20f1\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule4\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def2\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f12\",\r\n \"reroute\": true\r\n }\r\n }\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [],\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczE0Nzc/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5eca2bce-c7fa-4b2b-b4b9-c4c0046c9a6d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\""
+ ],
+ "x-ms-request-id": [
+ "df510689-88bf-46d6-87ab-94ba84754140"
+ ],
+ "x-ms-correlation-request-id": [
+ "8f676d0e-d6b1-46d2-9099-7bd18acc6e59"
+ ],
+ "x-ms-arm-service-request-id": [
+ "6922a0ce-897c-479d-aabc-867eb2a7f3e0"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150645Z:8f676d0e-d6b1-46d2-9099-7bd18acc6e59"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:06:45 GMT"
+ ],
+ "Content-Length": [
+ "14328"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1477\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"61668363-eb1e-48f4-946d-168a968558bc\",\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\": \"ps340\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/gatewayIPConfigurations/ps340\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps6876\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps2533\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps5393\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 81\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps8186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps3936\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps4441\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\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\": \"ps1722\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps7442\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\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\": \"ps9342\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps860\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/probes/ps860\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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\": \"ps4622\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule1\",\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 \"urlConfiguration\": {\r\n \"modifiedPath\": \"/abc\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule2\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule3\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedQueryString\": \"a=b&c=d%20f1\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule4\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def2\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f12\",\r\n \"reroute\": true\r\n }\r\n }\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [],\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczE0Nzc/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1ef14f55-8173-4c70-92ce-c90b6b405aad"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\""
+ ],
+ "x-ms-request-id": [
+ "6c42db0d-b35d-497d-afe1-589bdd683190"
+ ],
+ "x-ms-correlation-request-id": [
+ "b634f565-0453-4a4c-8048-08cfe3b2d8f3"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a5639089-eb37-4f24-9eea-5d9d0177360c"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150646Z:b634f565-0453-4a4c-8048-08cfe3b2d8f3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:06:46 GMT"
+ ],
+ "Content-Length": [
+ "14328"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1477\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"61668363-eb1e-48f4-946d-168a968558bc\",\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\": \"ps340\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/gatewayIPConfigurations/ps340\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps6876\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps2533\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps5393\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 81\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps8186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps3936\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps4441\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\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\": \"ps1722\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps7442\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\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\": \"ps9342\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps860\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/probes/ps860\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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\": \"ps4622\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule1\",\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 \"urlConfiguration\": {\r\n \"modifiedPath\": \"/abc\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule2\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule3\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedQueryString\": \"a=b&c=d%20f1\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule4\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def2\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f12\",\r\n \"reroute\": true\r\n }\r\n }\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [],\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczE0Nzc/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cfb68caf-c22a-4ef0-9248-87b15e6f39d7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\""
+ ],
+ "x-ms-request-id": [
+ "f988c317-0add-4a7c-8143-b9ea73bd2d23"
+ ],
+ "x-ms-correlation-request-id": [
+ "8d817846-194c-4950-8669-47924b98a613"
+ ],
+ "x-ms-arm-service-request-id": [
+ "6c2fb60a-74bb-4de6-92aa-a0db78386e99"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150647Z:8d817846-194c-4950-8669-47924b98a613"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:06:46 GMT"
+ ],
+ "Content-Length": [
+ "14328"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1477\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"61668363-eb1e-48f4-946d-168a968558bc\",\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\": \"ps340\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/gatewayIPConfigurations/ps340\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps6876\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps2533\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps5393\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 81\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps8186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps3936\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps4441\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\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\": \"ps1722\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps7442\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\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\": \"ps9342\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps860\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/probes/ps860\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\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\": \"ps4622\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\",\r\n \"etag\": \"W/\\\"b2b883eb-89d3-486f-a5fe-12d3ea7fcdce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule1\",\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 \"urlConfiguration\": {\r\n \"modifiedPath\": \"/abc\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule2\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule3\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedQueryString\": \"a=b&c=d%20f1\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule4\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def2\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f12\",\r\n \"reroute\": true\r\n }\r\n }\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [],\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczE0Nzc/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"ea8aefb7-1068-40de-8e97-cc61df2cb939\""
+ ],
+ "x-ms-request-id": [
+ "3dfffc03-dcda-479a-ad26-7b1fff7179f6"
+ ],
+ "x-ms-correlation-request-id": [
+ "4495637a-e4d7-49b6-bd76-677afc6491fe"
+ ],
+ "x-ms-arm-service-request-id": [
+ "fdc0b1a9-84c4-4258-b06a-a5e665cefa01"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151232Z:4495637a-e4d7-49b6-bd76-677afc6491fe"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:12:31 GMT"
+ ],
+ "Content-Length": [
+ "17237"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1477\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"61668363-eb1e-48f4-946d-168a968558bc\",\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\": \"ps340\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/gatewayIPConfigurations/ps340\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps6876\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\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/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps2533\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps5393\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 81,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\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\": \"ps8186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps3936\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps4441\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps759\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\"\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\": \"ps1722\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps7442\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\"\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\": \"ps9342\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps4868\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps860\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/probes/ps860\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\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\": \"ps4622\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule1\",\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 \"urlConfiguration\": {\r\n \"modifiedPath\": \"/abc1\",\r\n \"modifiedQueryString\": \"a=b&c=d\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule2\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule3\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedQueryString\": \"a=b&c=d%20f1\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule4\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def2\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f12\",\r\n \"reroute\": false\r\n }\r\n }\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [],\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczE0Nzc/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d78acfc9-83da-45f9-978c-e013bb2ad0be"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"ea8aefb7-1068-40de-8e97-cc61df2cb939\""
+ ],
+ "x-ms-request-id": [
+ "d700375a-9191-416d-b0ad-18dd19f7b7e9"
+ ],
+ "x-ms-correlation-request-id": [
+ "aec52d1e-a512-4c73-a9c4-f8fb9def22bd"
+ ],
+ "x-ms-arm-service-request-id": [
+ "7cbc4bb0-b48e-4d64-8c45-ca288472ba73"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151232Z:aec52d1e-a512-4c73-a9c4-f8fb9def22bd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:12:31 GMT"
+ ],
+ "Content-Length": [
+ "17237"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1477\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"61668363-eb1e-48f4-946d-168a968558bc\",\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\": \"ps340\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/gatewayIPConfigurations/ps340\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps6876\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\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/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps2533\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps5393\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 81,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\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\": \"ps8186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps3936\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps4441\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps759\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\"\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\": \"ps1722\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps7442\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\"\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\": \"ps9342\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps4868\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps860\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/probes/ps860\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\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\": \"ps4622\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule1\",\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 \"urlConfiguration\": {\r\n \"modifiedPath\": \"/abc1\",\r\n \"modifiedQueryString\": \"a=b&c=d\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule2\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule3\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedQueryString\": \"a=b&c=d%20f1\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule4\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def2\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f12\",\r\n \"reroute\": false\r\n }\r\n }\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [],\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczE0Nzc/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3f247cc0-32d4-46e6-842d-a9eaf7d9785e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"ea8aefb7-1068-40de-8e97-cc61df2cb939\""
+ ],
+ "x-ms-request-id": [
+ "0e866051-5433-4114-89a1-008ee75d03e1"
+ ],
+ "x-ms-correlation-request-id": [
+ "b7be3caf-29f0-45bb-a007-3659b9c7087e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8063bdbf-f6da-4843-b87e-855858fd3e06"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151233Z:b7be3caf-29f0-45bb-a007-3659b9c7087e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:12:32 GMT"
+ ],
+ "Content-Length": [
+ "17237"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1477\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"61668363-eb1e-48f4-946d-168a968558bc\",\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\": \"ps340\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/gatewayIPConfigurations/ps340\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps6876\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\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/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps2533\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps5393\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 81,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\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\": \"ps8186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps3936\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps4441\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps759\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\"\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\": \"ps1722\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps7442\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\"\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\": \"ps9342\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps4868\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps860\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/probes/ps860\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\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\": \"ps4622\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\",\r\n \"etag\": \"W/\\\"ea8aefb7-1068-40de-8e97-cc61df2cb939\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule1\",\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 \"urlConfiguration\": {\r\n \"modifiedPath\": \"/abc1\",\r\n \"modifiedQueryString\": \"a=b&c=d\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule2\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule3\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedQueryString\": \"a=b&c=d%20f1\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule4\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def2\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f12\",\r\n \"reroute\": false\r\n }\r\n }\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [],\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczE0Nzc/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1a31e00a-81ea-4802-bbd8-bdc4e4a7bbb5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"cea411f0-b585-43c9-a7e5-55751ab11cbe\""
+ ],
+ "x-ms-request-id": [
+ "dceb936b-4219-4aa2-a095-2142e11ef7d9"
+ ],
+ "x-ms-correlation-request-id": [
+ "235bc83d-5f70-40d2-850c-0df10e8ce16f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4c065c23-54d5-4871-86bc-0230418b41b2"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151743Z:235bc83d-5f70-40d2-850c-0df10e8ce16f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:17:42 GMT"
+ ],
+ "Content-Length": [
+ "17237"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1477\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477\",\r\n \"etag\": \"W/\\\"cea411f0-b585-43c9-a7e5-55751ab11cbe\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"61668363-eb1e-48f4-946d-168a968558bc\",\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\": \"ps340\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/gatewayIPConfigurations/ps340\",\r\n \"etag\": \"W/\\\"cea411f0-b585-43c9-a7e5-55751ab11cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps6876\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\",\r\n \"etag\": \"W/\\\"cea411f0-b585-43c9-a7e5-55751ab11cbe\\\"\",\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/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps2533\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\",\r\n \"etag\": \"W/\\\"cea411f0-b585-43c9-a7e5-55751ab11cbe\\\"\",\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps5393\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\",\r\n \"etag\": \"W/\\\"cea411f0-b585-43c9-a7e5-55751ab11cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 81,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\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\": \"ps8186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\",\r\n \"etag\": \"W/\\\"cea411f0-b585-43c9-a7e5-55751ab11cbe\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps3936\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\",\r\n \"etag\": \"W/\\\"cea411f0-b585-43c9-a7e5-55751ab11cbe\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps4441\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\",\r\n \"etag\": \"W/\\\"cea411f0-b585-43c9-a7e5-55751ab11cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps759\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\",\r\n \"etag\": \"W/\\\"cea411f0-b585-43c9-a7e5-55751ab11cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\"\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\": \"ps1722\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\",\r\n \"etag\": \"W/\\\"cea411f0-b585-43c9-a7e5-55751ab11cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps7442\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\",\r\n \"etag\": \"W/\\\"cea411f0-b585-43c9-a7e5-55751ab11cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\"\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\": \"ps9342\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\",\r\n \"etag\": \"W/\\\"cea411f0-b585-43c9-a7e5-55751ab11cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps4868\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\",\r\n \"etag\": \"W/\\\"cea411f0-b585-43c9-a7e5-55751ab11cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps860\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/probes/ps860\",\r\n \"etag\": \"W/\\\"cea411f0-b585-43c9-a7e5-55751ab11cbe\\\"\",\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\": \"ps4622\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\",\r\n \"etag\": \"W/\\\"cea411f0-b585-43c9-a7e5-55751ab11cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule1\",\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 \"urlConfiguration\": {\r\n \"modifiedPath\": \"/abc1\",\r\n \"modifiedQueryString\": \"a=b&c=d\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule2\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule3\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedQueryString\": \"a=b&c=d%20f1\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule4\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def2\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f12\",\r\n \"reroute\": false\r\n }\r\n }\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [],\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczE0Nzc/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/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\"\r\n }\r\n },\r\n \"name\": \"ps340\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/gatewayIpConfigurations/ps340\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"sslCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996\"\r\n }\r\n },\r\n \"name\": \"ps6876\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIpConfigurations/ps6876\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"ps2533\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 81\r\n },\r\n \"name\": \"ps5393\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\"\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\": \"ps860\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/probes/ps860\"\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\": \"ps8186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\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\": \"ps3936\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIpConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"hostnames\": []\r\n },\r\n \"name\": \"ps4441\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\"\r\n }\r\n },\r\n \"name\": \"ps7442\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps1722\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"name\": \"ps9342\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"properties\": {\r\n \"rewriteRules\": [\r\n {\r\n \"name\": \"rewriterule1\",\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 \"urlConfiguration\": {\r\n \"modifiedPath\": \"/abc\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"rewriterule2\",\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"rewriterule3\",\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedQueryString\": \"a=b&c=d%20f1\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"rewriterule4\",\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def2\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f12\",\r\n \"reroute\": true\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"name\": \"ps4622\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [],\r\n \"autoscaleConfiguration\": {\r\n \"minCapacity\": 3\r\n },\r\n \"customErrorConfigurations\": []\r\n },\r\n \"zones\": [],\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0af77f03-e9aa-4d9d-9755-ef3010e6b21f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "9201"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "a730fd38-8726-45b0-a888-06b14f5314e5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "0aabbbca-0ab7-4588-be16-d9c141e4dcec"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f48d3ed8-7288-4e85-9f05-e36fc47d0cd8"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150258Z:0aabbbca-0ab7-4588-be16-d9c141e4dcec"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:02:57 GMT"
+ ],
+ "Content-Length": [
+ "14315"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1477\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477\",\r\n \"etag\": \"W/\\\"75397a09-72bc-44a0-8d91-a8389c311c0a\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"61668363-eb1e-48f4-946d-168a968558bc\",\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\": \"ps340\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/gatewayIPConfigurations/ps340\",\r\n \"etag\": \"W/\\\"75397a09-72bc-44a0-8d91-a8389c311c0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps6876\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\",\r\n \"etag\": \"W/\\\"75397a09-72bc-44a0-8d91-a8389c311c0a\\\"\",\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/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps2533\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\",\r\n \"etag\": \"W/\\\"75397a09-72bc-44a0-8d91-a8389c311c0a\\\"\",\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps5393\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\",\r\n \"etag\": \"W/\\\"75397a09-72bc-44a0-8d91-a8389c311c0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 81\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"ps8186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\",\r\n \"etag\": \"W/\\\"75397a09-72bc-44a0-8d91-a8389c311c0a\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps3936\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\",\r\n \"etag\": \"W/\\\"75397a09-72bc-44a0-8d91-a8389c311c0a\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps4441\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\",\r\n \"etag\": \"W/\\\"75397a09-72bc-44a0-8d91-a8389c311c0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\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\": \"ps1722\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\",\r\n \"etag\": \"W/\\\"75397a09-72bc-44a0-8d91-a8389c311c0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps7442\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\",\r\n \"etag\": \"W/\\\"75397a09-72bc-44a0-8d91-a8389c311c0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\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\": \"ps9342\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\",\r\n \"etag\": \"W/\\\"75397a09-72bc-44a0-8d91-a8389c311c0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps860\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/probes/ps860\",\r\n \"etag\": \"W/\\\"75397a09-72bc-44a0-8d91-a8389c311c0a\\\"\",\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\": \"ps4622\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\",\r\n \"etag\": \"W/\\\"75397a09-72bc-44a0-8d91-a8389c311c0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule1\",\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 \"urlConfiguration\": {\r\n \"modifiedPath\": \"/abc\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule2\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule3\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedQueryString\": \"a=b&c=d%20f1\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule4\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def2\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f12\",\r\n \"reroute\": true\r\n }\r\n }\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [],\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczE0Nzc/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/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\"\r\n }\r\n },\r\n \"name\": \"ps340\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/gatewayIPConfigurations/ps340\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"sslCertificates\": [],\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/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996\"\r\n }\r\n },\r\n \"name\": \"ps6876\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"ps2533\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 81\r\n },\r\n \"name\": \"ps5393\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\"\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\": \"ps860\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/probes/ps860\"\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\": \"ps8186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\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\": \"ps3936\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"hostnames\": []\r\n },\r\n \"name\": \"ps4441\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIpConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"customErrorConfigurations\": [],\r\n \"hostnames\": []\r\n },\r\n \"name\": \"ps759\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"properties\": {\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\"\r\n }\r\n },\r\n \"name\": \"ps7442\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps1722\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"name\": \"ps9342\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"name\": \"ps4868\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\"\r\n }\r\n ],\r\n \"rewriteRuleSets\": [\r\n {\r\n \"properties\": {\r\n \"rewriteRules\": [\r\n {\r\n \"name\": \"rewriterule1\",\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 \"urlConfiguration\": {\r\n \"modifiedPath\": \"/abc1\",\r\n \"modifiedQueryString\": \"a=b&c=d\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"rewriterule2\",\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"rewriterule3\",\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedQueryString\": \"a=b&c=d%20f1\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"rewriterule4\",\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def2\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f12\",\r\n \"reroute\": false\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"name\": \"ps4622\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [],\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477\",\r\n \"location\": \"northeurope\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "02377934-61e7-4eae-8d0a-fb573c6ada71"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "11230"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f107a45b-02ab-4a9d-a429-5a60ad9a3d19"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "ce8a3b05-7c60-490a-9b3b-04c159dd9163"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f1238547-a688-403c-bec9-b1f624f6b235"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150652Z:ce8a3b05-7c60-490a-9b3b-04c159dd9163"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:06:51 GMT"
+ ],
+ "Content-Length": [
+ "17222"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps1477\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477\",\r\n \"etag\": \"W/\\\"9c4d9c22-da34-4cca-8b51-2c759264499f\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"61668363-eb1e-48f4-946d-168a968558bc\",\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\": \"ps340\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/gatewayIPConfigurations/ps340\",\r\n \"etag\": \"W/\\\"9c4d9c22-da34-4cca-8b51-2c759264499f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/virtualNetworks/ps8908/subnets/ps1037\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\"\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"trustedRootCertificates\": [],\r\n \"trustedClientCertificates\": [],\r\n \"sslProfiles\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"ps6876\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\",\r\n \"etag\": \"W/\\\"9c4d9c22-da34-4cca-8b51-2c759264499f\\\"\",\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/ps9260/providers/Microsoft.Network/publicIPAddresses/ps4996\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"ps2533\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\",\r\n \"etag\": \"W/\\\"9c4d9c22-da34-4cca-8b51-2c759264499f\\\"\",\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/frontendPorts\"\r\n },\r\n {\r\n \"name\": \"ps5393\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\",\r\n \"etag\": \"W/\\\"9c4d9c22-da34-4cca-8b51-2c759264499f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 81,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\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\": \"ps8186\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\",\r\n \"etag\": \"W/\\\"9c4d9c22-da34-4cca-8b51-2c759264499f\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps3936\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\",\r\n \"etag\": \"W/\\\"9c4d9c22-da34-4cca-8b51-2c759264499f\\\"\",\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 \"urlPathMaps\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\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\": \"ps4441\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\",\r\n \"etag\": \"W/\\\"9c4d9c22-da34-4cca-8b51-2c759264499f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps2533\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/httpListeners\"\r\n },\r\n {\r\n \"name\": \"ps759\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\",\r\n \"etag\": \"W/\\\"9c4d9c22-da34-4cca-8b51-2c759264499f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendIPConfigurations/ps6876\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/frontendPorts/ps5393\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\"\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\": \"ps1722\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\",\r\n \"etag\": \"W/\\\"9c4d9c22-da34-4cca-8b51-2c759264499f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"defaultBackendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"defaultBackendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"pathRules\": [\r\n {\r\n \"name\": \"ps7442\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\",\r\n \"etag\": \"W/\\\"9c4d9c22-da34-4cca-8b51-2c759264499f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"paths\": [\r\n \"/video\"\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendAddressPools/ps8186\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/backendHttpSettingsCollection/ps3936\"\r\n },\r\n \"rewriteRuleSet\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\"\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/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\"\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\": \"ps9342\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps9342\",\r\n \"etag\": \"W/\\\"9c4d9c22-da34-4cca-8b51-2c759264499f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps4441\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"ps4868\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/requestRoutingRules/ps4868\",\r\n \"etag\": \"W/\\\"9c4d9c22-da34-4cca-8b51-2c759264499f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"PathBasedRouting\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/httpListeners/ps759\"\r\n },\r\n \"urlPathMap\": {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/requestRoutingRules\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"ps860\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/probes/ps860\",\r\n \"etag\": \"W/\\\"9c4d9c22-da34-4cca-8b51-2c759264499f\\\"\",\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\": \"ps4622\",\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/rewriteRuleSets/ps4622\",\r\n \"etag\": \"W/\\\"9c4d9c22-da34-4cca-8b51-2c759264499f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"rewriteRules\": [\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule1\",\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 \"urlConfiguration\": {\r\n \"modifiedPath\": \"/abc1\",\r\n \"modifiedQueryString\": \"a=b&c=d\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule2\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule3\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedQueryString\": \"a=b&c=d%20f1\",\r\n \"reroute\": false\r\n }\r\n }\r\n },\r\n {\r\n \"ruleSequence\": 100,\r\n \"conditions\": [],\r\n \"name\": \"rewriterule4\",\r\n \"actionSet\": {\r\n \"requestHeaderConfigurations\": [],\r\n \"responseHeaderConfigurations\": [],\r\n \"urlConfiguration\": {\r\n \"modifiedPath\": \"/def2\",\r\n \"modifiedQueryString\": \"a=b&c=d%20f12\",\r\n \"reroute\": false\r\n }\r\n }\r\n }\r\n ],\r\n \"pathRules\": [\r\n {\r\n \"id\": \"/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/urlPathMaps/ps1722/pathRules/ps7442\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\"\r\n }\r\n ],\r\n \"redirectConfigurations\": [],\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/providers/Microsoft.Network/locations/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "4a66de56-2aa2-48e1-827f-9096408a800d"
+ ],
+ "x-ms-correlation-request-id": [
+ "f2f8d4c1-4d7f-458d-8855-86d1cb55ee6d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9619ad46-10c6-40c9-a0a0-1acd3ce01d05"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150308Z:f2f8d4c1-4d7f-458d-8855-86d1cb55ee6d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:03: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/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "e41f4cce-7e43-4d8b-a253-2b6912530f27"
+ ],
+ "x-ms-correlation-request-id": [
+ "52631ca4-da5b-4689-87a5-95627b7e615b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "5223e2bb-bb55-41c2-b6d6-bd3226b66734"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150319Z:52631ca4-da5b-4689-87a5-95627b7e615b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:03: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/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f40fc1a3-e3e1-4553-bf2a-edb395064bfa"
+ ],
+ "x-ms-correlation-request-id": [
+ "f771df06-a990-4076-857d-cb40b687a81c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "7797abc7-ae87-4051-88a6-0d802e01cd17"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150329Z:f771df06-a990-4076-857d-cb40b687a81c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:03:29 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "4dfa769f-208f-460a-a2dd-5d6f86dd659d"
+ ],
+ "x-ms-correlation-request-id": [
+ "0b1e220b-a0d6-40ae-87d1-8a30fc72f3ba"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c4783b07-f481-41b5-b40d-eb97b969ebf9"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150339Z:0b1e220b-a0d6-40ae-87d1-8a30fc72f3ba"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:03:39 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b4ea9b55-bd3e-4718-b599-f4509a9a2cd3"
+ ],
+ "x-ms-correlation-request-id": [
+ "b177c255-f46f-4414-9ecd-eeaaccf37de4"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a9b5e517-1f1d-464d-ace6-8f72e883e75c"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150349Z:b177c255-f46f-4414-9ecd-eeaaccf37de4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:03: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/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "37e30850-8ceb-422c-b268-80dc16a72f89"
+ ],
+ "x-ms-correlation-request-id": [
+ "395fed60-6b2c-413c-bd9b-55a3b682ba23"
+ ],
+ "x-ms-arm-service-request-id": [
+ "238ff12a-eb3c-4c94-b0ac-8f23f5d8c214"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150400Z:395fed60-6b2c-413c-bd9b-55a3b682ba23"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:03:59 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "461111ca-340c-4471-a7cc-50f02b88b12b"
+ ],
+ "x-ms-correlation-request-id": [
+ "2efb638c-63a9-4009-b7fd-931ba2c789ae"
+ ],
+ "x-ms-arm-service-request-id": [
+ "64932096-5d66-434b-acd6-eae200fa9980"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150410Z:2efb638c-63a9-4009-b7fd-931ba2c789ae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:04:09 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f22e6a37-7368-482a-8ea2-37e113f2047d"
+ ],
+ "x-ms-correlation-request-id": [
+ "8461d580-eca6-47ec-a939-3bed933a968d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "14554a00-3c9c-4572-8f72-930baab93432"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150420Z:8461d580-eca6-47ec-a939-3bed933a968d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:04: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/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "4611391e-5d28-484e-a95a-795b32a99fe1"
+ ],
+ "x-ms-correlation-request-id": [
+ "da9a99a9-79cd-4b6b-94b9-30fa34698225"
+ ],
+ "x-ms-arm-service-request-id": [
+ "72bf391c-4187-4930-a227-c9fbd8b456a9"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150431Z:da9a99a9-79cd-4b6b-94b9-30fa34698225"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:04: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/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "90c9a248-2dd5-4d39-ba22-d9f67fb9ecff"
+ ],
+ "x-ms-correlation-request-id": [
+ "03fba866-8ee8-4ed8-9c3c-30a833bd375d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a0726591-b56f-48ae-864e-6ba389f7ea67"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150441Z:03fba866-8ee8-4ed8-9c3c-30a833bd375d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:04: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/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "96bd0069-fa04-4ce4-b8e3-0792d2862b52"
+ ],
+ "x-ms-correlation-request-id": [
+ "c720a91a-e9e9-472b-ad3f-d35787a7c472"
+ ],
+ "x-ms-arm-service-request-id": [
+ "aaa244d8-1fbe-4108-9ae8-7037900a6124"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150451Z:c720a91a-e9e9-472b-ad3f-d35787a7c472"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:04:50 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0d5df5ff-e92a-4d84-b2df-3164709a3ab2"
+ ],
+ "x-ms-correlation-request-id": [
+ "c957ed85-f35b-4011-bb9c-ad7b6f60372b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "5f0742ee-1087-4a24-94eb-7d2ae576906c"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150501Z:c957ed85-f35b-4011-bb9c-ad7b6f60372b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:05: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/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "bfc47d34-651e-405f-b62e-036fad8503fc"
+ ],
+ "x-ms-correlation-request-id": [
+ "a3e50365-25bf-43bf-814a-71df8c3a1ad6"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c13c1478-b923-4b3a-a8b7-8040493ea87e"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150512Z:a3e50365-25bf-43bf-814a-71df8c3a1ad6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:05: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/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "4c6595e4-b24a-4737-a4f8-00f19dbb0f85"
+ ],
+ "x-ms-correlation-request-id": [
+ "ab34c026-5834-4f26-abe6-ba39f287a7b7"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1bae3143-c6b4-4007-b25f-99485d4927cf"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150522Z:ab34c026-5834-4f26-abe6-ba39f287a7b7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:05: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/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "444f7fde-0d10-4c8e-92f1-7d6d6608468d"
+ ],
+ "x-ms-correlation-request-id": [
+ "e2d06a7e-41e2-4d28-aa7d-1fda61093b6f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "89b524a3-fd15-4648-a574-059a6ee37e66"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150533Z:e2d06a7e-41e2-4d28-aa7d-1fda61093b6f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:05: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/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "432913c3-09f3-4c71-a65b-049b11970bb8"
+ ],
+ "x-ms-correlation-request-id": [
+ "a77e3eae-f5e2-4a69-a1c3-8d36e80f8ded"
+ ],
+ "x-ms-arm-service-request-id": [
+ "40582587-c340-47d9-971c-24e031c43010"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150543Z:a77e3eae-f5e2-4a69-a1c3-8d36e80f8ded"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:05: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/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "fc2d2846-80ef-4197-9479-67c47d1e66d2"
+ ],
+ "x-ms-correlation-request-id": [
+ "9efd191a-1470-4ca5-bac2-0b4c35ea470e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3f8c031f-6f4b-4ad1-810a-2ea1131ee1aa"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150553Z:9efd191a-1470-4ca5-bac2-0b4c35ea470e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:05: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/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "7a203946-3c2d-4cea-9804-3987a5376c98"
+ ],
+ "x-ms-correlation-request-id": [
+ "af943994-91e2-48fa-822b-0657f198e073"
+ ],
+ "x-ms-arm-service-request-id": [
+ "392b16d1-40e3-4169-a7e9-4d344b183756"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150603Z:af943994-91e2-48fa-822b-0657f198e073"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:06: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/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "6a07750f-ab42-4aa4-8278-30408c9741f3"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b4af7f9-fe9a-4c85-8cb6-242923e09421"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8fd2e388-668e-4f3e-aa75-573bbf9e2336"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150613Z:1b4af7f9-fe9a-4c85-8cb6-242923e09421"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:06: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/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b9e901fe-e450-4c25-9969-ff979bb27a73"
+ ],
+ "x-ms-correlation-request-id": [
+ "836bf6a6-a98e-4425-9233-7979f76d3b7e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1c100d53-ae89-4aa2-b376-b35f76e4c018"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150624Z:836bf6a6-a98e-4425-9233-7979f76d3b7e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:06: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/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "9dad6c69-68c4-4ee9-bd79-584e7b791208"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf3101b2-b0c2-4906-9984-76f6a193a2c2"
+ ],
+ "x-ms-arm-service-request-id": [
+ "93416b80-0460-428b-9122-ff60011a210c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T150634Z:cf3101b2-b0c2-4906-9984-76f6a193a2c2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:06:34 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/a730fd38-8726-45b0-a888-06b14f5314e5?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9hNzMwZmQzOC04NzI2LTQ1YjAtYTg4OC0wNmIxNGY1MzE0ZTU/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "1975db79-f13c-48c4-9362-ec1e2497c350"
+ ],
+ "x-ms-correlation-request-id": [
+ "6d4240d0-8ad8-474d-ba69-137348dca27b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "aeee3dd1-4c12-44ec-ac8e-3961481cda1a"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150645Z:6d4240d0-8ad8-474d-ba69-137348dca27b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:06:44 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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "a5f2552c-db70-4fdd-a7e2-dbf4d9a6b53b"
+ ],
+ "x-ms-correlation-request-id": [
+ "044eb7cf-a58a-4b35-afaa-b3212a137b2c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "10b927d9-75e9-4f6c-8675-8d748cc04101"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150703Z:044eb7cf-a58a-4b35-afaa-b3212a137b2c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:07:02 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "8437b2b3-67b0-4ad0-a83c-d63d44399a96"
+ ],
+ "x-ms-correlation-request-id": [
+ "99c41106-329b-4955-aeaa-d3396184d1b9"
+ ],
+ "x-ms-arm-service-request-id": [
+ "5be6863f-89db-4833-8510-6c15d6b8e2d7"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150713Z:99c41106-329b-4955-aeaa-d3396184d1b9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:07: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d3271d65-3a71-4021-b230-572d5371b120"
+ ],
+ "x-ms-correlation-request-id": [
+ "96181f2e-5013-408c-9712-8362598998d7"
+ ],
+ "x-ms-arm-service-request-id": [
+ "2eebc95c-6baa-456f-9891-219a7df29332"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150723Z:96181f2e-5013-408c-9712-8362598998d7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:07: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "dcb43fa9-fd3f-4a4b-9fcd-03982ce41423"
+ ],
+ "x-ms-correlation-request-id": [
+ "faef5146-06c5-47c2-b7b7-e58cc6eb81a3"
+ ],
+ "x-ms-arm-service-request-id": [
+ "ed0668cb-262f-4cee-bf34-b2bb329ca67a"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150733Z:faef5146-06c5-47c2-b7b7-e58cc6eb81a3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:07:33 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d5dcb89d-33f4-4616-9d17-dca1ed465f09"
+ ],
+ "x-ms-correlation-request-id": [
+ "242b4305-4a59-4672-848c-1c088a83a87f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "d856cf3e-4c19-4721-ad1b-73d665f059de"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150744Z:242b4305-4a59-4672-848c-1c088a83a87f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:07: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "deb6ef98-c3e7-458a-9cb9-238b7be0d879"
+ ],
+ "x-ms-correlation-request-id": [
+ "b5ddca4f-a460-4057-bfec-21e34f03d4bf"
+ ],
+ "x-ms-arm-service-request-id": [
+ "dcb6ab29-bd91-4a5a-b73e-70f477c5ad27"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150754Z:b5ddca4f-a460-4057-bfec-21e34f03d4bf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:07:53 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "5b1fd8dd-25d7-4488-b973-b64e2fce828d"
+ ],
+ "x-ms-correlation-request-id": [
+ "9478e82a-cd60-4e01-a05e-8b513291ca6c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "60b57d87-78e2-42b9-99cb-60ffcac96edf"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150804Z:9478e82a-cd60-4e01-a05e-8b513291ca6c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:08: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "be691280-8473-4789-b672-2683920a6e8a"
+ ],
+ "x-ms-correlation-request-id": [
+ "2c2d2185-3080-4a41-b639-dcc863a6ef9e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "cad356b9-f4dd-425e-a6ed-2150a943487a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T150814Z:2c2d2185-3080-4a41-b639-dcc863a6ef9e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:08: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "06080cae-05d1-4313-b77f-51c3d3ac86b7"
+ ],
+ "x-ms-correlation-request-id": [
+ "e9c16902-ca40-4569-bfe5-c2c8a6f76cab"
+ ],
+ "x-ms-arm-service-request-id": [
+ "037e74e9-b61f-4182-8a77-842644e34e80"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150825Z:e9c16902-ca40-4569-bfe5-c2c8a6f76cab"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:08:25 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "9a80f9c5-b29b-4e8f-856e-918282aaaf3b"
+ ],
+ "x-ms-correlation-request-id": [
+ "af5fa3ef-0551-4c9b-825f-b82df9c080a2"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9149f370-bf8b-472d-95d2-235c177d0df9"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150835Z:af5fa3ef-0551-4c9b-825f-b82df9c080a2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:08:35 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "eedadb1f-ac31-484a-be33-198d46ac6c18"
+ ],
+ "x-ms-correlation-request-id": [
+ "99378204-3bb8-4b19-afba-df7cb07bd519"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9468501f-05ed-4fa5-b0f0-7e4e69ffbab6"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150845Z:99378204-3bb8-4b19-afba-df7cb07bd519"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:08:45 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "58cef128-4829-46cd-9046-ed78b2c6a404"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ddaafe3-a1db-44b6-b9e6-4dde99667e88"
+ ],
+ "x-ms-arm-service-request-id": [
+ "7c84049b-2f87-4f0e-b519-bfece439a6c2"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150856Z:3ddaafe3-a1db-44b6-b9e6-4dde99667e88"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:08: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "75868ec4-658e-4ad3-b4e2-e7d19cd89adc"
+ ],
+ "x-ms-correlation-request-id": [
+ "1a009542-c470-4b22-a46b-63951863490e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "ae72dc7d-9e61-4b03-a936-cfd908593a93"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150906Z:1a009542-c470-4b22-a46b-63951863490e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:09: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f76f19e3-106b-49ca-bccf-04fd7c04ec4c"
+ ],
+ "x-ms-correlation-request-id": [
+ "88a4434f-e9d7-4696-9ed6-f397ac795616"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b509018d-7346-4d45-a52b-ffda717a14ae"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150916Z:88a4434f-e9d7-4696-9ed6-f397ac795616"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:09: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c0836c04-1098-498e-b790-c2a441808820"
+ ],
+ "x-ms-correlation-request-id": [
+ "48ca4bd1-a7d8-4314-9d52-f5ff522fd53e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "16f68023-300f-470e-8c20-0a7e2e78787d"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150926Z:48ca4bd1-a7d8-4314-9d52-f5ff522fd53e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:09: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ad801ff8-0150-4eb9-8dde-df5a9761f32c"
+ ],
+ "x-ms-correlation-request-id": [
+ "37befd19-a6c2-42b1-b332-90eaf951ff2c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4eec60b3-ca85-4281-a7b9-3b7f582cd2f1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T150937Z:37befd19-a6c2-42b1-b332-90eaf951ff2c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:09:36 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "151239b0-d6be-4d4b-879c-9c648ebbc879"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca50e1ce-5d36-4900-9e23-9f1a5be08e5f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3bdcef8b-c5ce-4ad5-9b09-24fc0f5f661c"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150947Z:ca50e1ce-5d36-4900-9e23-9f1a5be08e5f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:09: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "eb7d22c6-c510-4c9a-a976-0580d108e77c"
+ ],
+ "x-ms-correlation-request-id": [
+ "722c502e-97c6-4626-8cf9-0a3fca794a59"
+ ],
+ "x-ms-arm-service-request-id": [
+ "fb89d1b7-5e33-461e-b8c4-6c0c362ed5b2"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T150958Z:722c502e-97c6-4626-8cf9-0a3fca794a59"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:09:57 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b3eecef1-5efe-45e5-8c98-4742c4d255d2"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe1c3522-c3c7-4a8c-9937-9c19bf2a7d7c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "fab45f8f-1a52-4580-96f2-ed58279aeccb"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151008Z:fe1c3522-c3c7-4a8c-9937-9c19bf2a7d7c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:10: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f929fb98-a287-4437-a121-33eb6603f9a6"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe33affd-912c-4a37-84b9-32e80c96b0fc"
+ ],
+ "x-ms-arm-service-request-id": [
+ "fea14786-d77c-4257-a2e3-70000f23bcdb"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151018Z:fe33affd-912c-4a37-84b9-32e80c96b0fc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:10: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "286c691e-b1a3-4e1d-abd3-80ba3bfb304f"
+ ],
+ "x-ms-correlation-request-id": [
+ "d3a5f739-d69b-4880-b1d8-921b773dfe75"
+ ],
+ "x-ms-arm-service-request-id": [
+ "07853c95-85d0-4b2f-936a-8ddb3d963f50"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151028Z:d3a5f739-d69b-4880-b1d8-921b773dfe75"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "51041862-e9b0-46dc-80f7-589342e54c90"
+ ],
+ "x-ms-correlation-request-id": [
+ "b97facb1-eb03-488c-b73a-cdef635f1271"
+ ],
+ "x-ms-arm-service-request-id": [
+ "5d277a36-f262-41da-ae86-d4645685cee7"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151038Z:b97facb1-eb03-488c-b73a-cdef635f1271"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "561097af-1366-4603-9299-c8d552ab0c33"
+ ],
+ "x-ms-correlation-request-id": [
+ "50cb5ba1-40c6-4835-8682-3b40a039293c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "17878063-77f0-4917-9da4-d39e02e15c4e"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151049Z:50cb5ba1-40c6-4835-8682-3b40a039293c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "6840ae6c-c08a-46f7-b424-faa9c28b2ac3"
+ ],
+ "x-ms-correlation-request-id": [
+ "0edffb3a-da87-422a-b984-2f6608103e9d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "703e6edb-a636-40f0-9492-33fea5c2eb2f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T151059Z:0edffb3a-da87-422a-b984-2f6608103e9d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:10:59 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f0dea698-283f-4a0f-9462-df0d6f47b791"
+ ],
+ "x-ms-correlation-request-id": [
+ "815248b9-5e4c-4ee4-8cce-d36bbfd73f5c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "2f34078d-4267-4828-9a91-fbd2472b9a09"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151110Z:815248b9-5e4c-4ee4-8cce-d36bbfd73f5c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:11:09 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d138e3af-4059-45c2-9461-e723d190b4c8"
+ ],
+ "x-ms-correlation-request-id": [
+ "60566e43-8427-4d35-a994-1872d0c4c542"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b26a4fe6-ffca-465b-b6ac-f1bf8d0482be"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151120Z:60566e43-8427-4d35-a994-1872d0c4c542"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ffc4bbfc-6486-456a-b24b-49ba3b663e41"
+ ],
+ "x-ms-correlation-request-id": [
+ "ffc868a7-7ed1-404a-9119-2a22e72c8794"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b1ef5bdc-5bb4-4419-b7a7-6c04547aa3ad"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11971"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T151130Z:ffc868a7-7ed1-404a-9119-2a22e72c8794"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:11:30 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c43dcf04-24ee-4bd3-8687-77cb2501a258"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d211e28-e1c5-4a97-bbc6-12ad527c399d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "741b66f5-50c5-48e0-bea9-bc14d94d43e7"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151140Z:7d211e28-e1c5-4a97-bbc6-12ad527c399d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d7733366-bdf5-4f87-8b88-71729512bfe7"
+ ],
+ "x-ms-correlation-request-id": [
+ "89ef857c-a45e-4663-bd70-3022c2ddad34"
+ ],
+ "x-ms-arm-service-request-id": [
+ "10eeb252-52ac-42a2-bc9a-6c8d394c9e7c"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151150Z:89ef857c-a45e-4663-bd70-3022c2ddad34"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "19b29f9a-6773-405d-805f-b71a09aa0996"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e9b76ab-aa86-43f0-ae76-fd5774d6960e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "6709d842-29ad-4cb4-98d5-072387a2b7a5"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151201Z:9e9b76ab-aa86-43f0-ae76-fd5774d6960e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:12: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c1b412d4-8a6b-45a8-9c85-7b6357702099"
+ ],
+ "x-ms-correlation-request-id": [
+ "921ee45a-fef5-450d-952a-672a34717888"
+ ],
+ "x-ms-arm-service-request-id": [
+ "afbe2311-fd95-4c39-8576-759ee0054541"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151211Z:921ee45a-fef5-450d-952a-672a34717888"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:12: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/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "4c4e5a89-7be9-4473-add0-6394f629de05"
+ ],
+ "x-ms-correlation-request-id": [
+ "39295aad-5378-44bb-88f3-f6c3ef0d0a03"
+ ],
+ "x-ms-arm-service-request-id": [
+ "788114d1-f370-464b-8feb-ece9873a3372"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T151221Z:39295aad-5378-44bb-88f3-f6c3ef0d0a03"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:12:20 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/f107a45b-02ab-4a9d-a429-5a60ad9a3d19?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9mMTA3YTQ1Yi0wMmFiLTRhOWQtYTQyOS01YTYwYWQ5YTNkMTk/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "cf9e8b2f-a4aa-4617-924c-eed554266256"
+ ],
+ "x-ms-correlation-request-id": [
+ "f01b513f-7967-4c00-a0f2-20e919c6202a"
+ ],
+ "x-ms-arm-service-request-id": [
+ "59fdd397-91ca-4df0-a4d5-eefb92548d08"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151232Z:f01b513f-7967-4c00-a0f2-20e919c6202a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:12: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/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477/stop?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczE0Nzcvc3RvcD9hcGktdmVyc2lvbj0yMDE5LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9a3bc900-d4c6-4570-9720-f0238c400016"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.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/northeurope/operationResults/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "513e0b17-5f12-4abc-8b48-c2364fe35e20"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "53097bdd-d62c-4ff2-8037-5c773c2fc3b2"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f240c17b-0f1e-4601-85a9-97f5e6522b61"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151233Z:53097bdd-d62c-4ff2-8037-5c773c2fc3b2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:12:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "e09267ad-ea64-40d5-a6ce-2bde4534801f"
+ ],
+ "x-ms-correlation-request-id": [
+ "c534274d-492c-4e0b-a3ef-d08410a1fba0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4e979bcc-c145-4788-a645-84a4b2e2e121"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151244Z:c534274d-492c-4e0b-a3ef-d08410a1fba0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:12: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "33041d20-88e5-44ad-abbc-28c506c331ff"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7a71be8-5a9d-4447-b833-75b94124e578"
+ ],
+ "x-ms-arm-service-request-id": [
+ "39df8663-7a18-4049-a532-a8387bc9a4e5"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151254Z:c7a71be8-5a9d-4447-b833-75b94124e578"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:12: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "8542a137-cef4-4f19-98e2-2e236041b676"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5d9222b-c344-48f0-95dd-29d208c7f271"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e3f56fa4-daed-480d-811d-e9047b7566d1"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151304Z:f5d9222b-c344-48f0-95dd-29d208c7f271"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:13: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f4ac7c23-b078-48bd-aa69-3e32503915cb"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c96e25a-871a-4b70-b436-c8f1f32eaabc"
+ ],
+ "x-ms-arm-service-request-id": [
+ "17ea4dbd-7cc9-41fc-8861-f4f2961c8937"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151314Z:6c96e25a-871a-4b70-b436-c8f1f32eaabc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:13: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "7f9520dd-f541-43b6-ace5-430e8dacf9bf"
+ ],
+ "x-ms-correlation-request-id": [
+ "2cee773d-169e-4a70-aecc-3f29adb96395"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8f0694d3-54cf-41fd-90ce-8787734efa62"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151325Z:2cee773d-169e-4a70-aecc-3f29adb96395"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:13: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "1bdd8e5f-4303-4fa2-b8fc-eaf733ec4cb0"
+ ],
+ "x-ms-correlation-request-id": [
+ "506ebc05-f2b3-4f1f-ad75-ea01bae6cbc9"
+ ],
+ "x-ms-arm-service-request-id": [
+ "fd76fc94-d1b7-474a-a341-8c1b42e631d1"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151335Z:506ebc05-f2b3-4f1f-ad75-ea01bae6cbc9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:13: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "809cbe43-1d69-4651-86cf-e57508084d60"
+ ],
+ "x-ms-correlation-request-id": [
+ "68613337-c965-46af-99fa-5ef838a1d317"
+ ],
+ "x-ms-arm-service-request-id": [
+ "d008d623-e5fc-466c-85b5-a2da1fa1cac7"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151345Z:68613337-c965-46af-99fa-5ef838a1d317"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:13: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0462083f-73f5-47b9-a338-7378ce745a1e"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f5bca2e-1553-4511-b94a-00278a6b6622"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c7004652-4b04-4be1-bbe3-d75c72036494"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T151355Z:5f5bca2e-1553-4511-b94a-00278a6b6622"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:13:55 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "cdf72e5e-75d8-4dfc-bd58-cacdf9559aa5"
+ ],
+ "x-ms-correlation-request-id": [
+ "11ab3319-2b14-4c8d-954d-bff93ba6fdc7"
+ ],
+ "x-ms-arm-service-request-id": [
+ "92882120-15fd-435a-9b2c-c0e6058e07b6"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151406Z:11ab3319-2b14-4c8d-954d-bff93ba6fdc7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:14: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0e8b1399-421f-4b6a-80bd-5836a48f5181"
+ ],
+ "x-ms-correlation-request-id": [
+ "98ca0898-865a-4876-9383-8b40b155b81b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "46bf0f6f-22c2-4fa7-862e-14fd490a6444"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151416Z:98ca0898-865a-4876-9383-8b40b155b81b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:14: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "91f9b864-ef58-4ee8-8c53-4d9a8eba57eb"
+ ],
+ "x-ms-correlation-request-id": [
+ "1dea03f6-a86e-4717-9acf-92bd0b19a424"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c4c7cfd5-b400-443d-a74a-d4e99e952e5e"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151426Z:1dea03f6-a86e-4717-9acf-92bd0b19a424"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:14: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "6ed5c0cc-930b-4e7f-a966-17b9002cf772"
+ ],
+ "x-ms-correlation-request-id": [
+ "5892b06e-3551-448b-976e-0739ab3c0ae7"
+ ],
+ "x-ms-arm-service-request-id": [
+ "d4df0906-b912-430d-9bb2-078aee5c1fc0"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151437Z:5892b06e-3551-448b-976e-0739ab3c0ae7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:14:37 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "a51337a5-341a-47bf-97d4-ccd781c43571"
+ ],
+ "x-ms-correlation-request-id": [
+ "567b99ab-3583-4fa3-b714-dd569f4f445f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "5ffa36a0-4cce-473b-9044-d17f397f953f"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151447Z:567b99ab-3583-4fa3-b714-dd569f4f445f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:14: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "76d74b52-ade8-46ac-a6c4-f6a8fad437bb"
+ ],
+ "x-ms-correlation-request-id": [
+ "45d30807-49a7-49f8-957e-105669a46e40"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b1ec3c5e-2a5c-4f2e-b142-cac9c7cb8352"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151457Z:45d30807-49a7-49f8-957e-105669a46e40"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:14:57 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b13a9cba-77f5-432d-bca7-5c22296dda35"
+ ],
+ "x-ms-correlation-request-id": [
+ "607ec116-3c8d-413e-827c-d9c0c7c76ce4"
+ ],
+ "x-ms-arm-service-request-id": [
+ "6eaeba95-f453-41ea-821b-82dfe17d4cea"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151507Z:607ec116-3c8d-413e-827c-d9c0c7c76ce4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:15:07 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b6f94764-5598-4b71-a2a9-d26ac3c4f71e"
+ ],
+ "x-ms-correlation-request-id": [
+ "a704a624-2578-4113-9f56-1f5f7559f90a"
+ ],
+ "x-ms-arm-service-request-id": [
+ "7536c17f-a88c-4546-b006-cab7b130e8ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T151518Z:a704a624-2578-4113-9f56-1f5f7559f90a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:15:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d6e555b6-4806-4fa2-a34e-c6070bf2414b"
+ ],
+ "x-ms-correlation-request-id": [
+ "36795e5d-dbcf-4eb0-94dd-f8069e197b23"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1f768bde-a459-4888-8650-50bd2f87b641"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151528Z:36795e5d-dbcf-4eb0-94dd-f8069e197b23"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:15:28 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f57912c0-d4fe-4bd4-96a3-5b58f9d3d78f"
+ ],
+ "x-ms-correlation-request-id": [
+ "c5294aed-46e3-4d4e-a7d4-15874774ebb8"
+ ],
+ "x-ms-arm-service-request-id": [
+ "d4af7540-bf39-45fe-9806-f77a48197dce"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151538Z:c5294aed-46e3-4d4e-a7d4-15874774ebb8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:15:38 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "62b26e33-2a41-4b39-9ddf-c18bc837eeaa"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9e2ac11-792a-429b-a5d3-48114bcb9169"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e53b8d3a-04b5-4c7c-aa76-d57659c3211c"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151549Z:f9e2ac11-792a-429b-a5d3-48114bcb9169"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:15:48 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ce4e34c8-7874-4d4d-9d35-742b3b9c5c36"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb669df7-37ed-4d77-b3c4-8346efe6e870"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8a6046e2-00dd-485e-98d9-27a717782b61"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151559Z:bb669df7-37ed-4d77-b3c4-8346efe6e870"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:15:59 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "54ea6ee3-d5b9-4723-98bb-25f660b353a1"
+ ],
+ "x-ms-correlation-request-id": [
+ "97073b2b-764a-4c0d-82b9-a1f4bf3b4bad"
+ ],
+ "x-ms-arm-service-request-id": [
+ "aa569b00-3fa4-4ceb-b24f-352c92157892"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151609Z:97073b2b-764a-4c0d-82b9-a1f4bf3b4bad"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:16:09 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "59634ba4-e7ae-4728-80e2-294dfd894979"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e0795c7-b832-405d-8c07-b1955db16ca0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c9dcd51c-084e-48dd-b89e-b3534350db9a"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151619Z:4e0795c7-b832-405d-8c07-b1955db16ca0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:16:19 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "011d6d3c-d384-4c0a-8611-6f4fae5406a7"
+ ],
+ "x-ms-correlation-request-id": [
+ "0dcf337f-f003-4849-8d0b-38d2a5cf5dad"
+ ],
+ "x-ms-arm-service-request-id": [
+ "723d3cec-2714-4e08-a8fb-04742ebada81"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151630Z:0dcf337f-f003-4849-8d0b-38d2a5cf5dad"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:16:29 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "972c31d4-d56c-47da-ba9c-0b1f757afb10"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e154d59-fd05-40ae-9575-8caf5a14fc2a"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0fcafff8-8709-4082-bf6f-f6ec152cf618"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151640Z:1e154d59-fd05-40ae-9575-8caf5a14fc2a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:16:40 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3b1c2bc1-b005-404a-b50f-2e0cd6ee576a"
+ ],
+ "x-ms-correlation-request-id": [
+ "76c6911c-d552-480d-84eb-b59527f3c208"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8c75094f-6766-4cf9-a1af-03a89c6b382e"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151651Z:76c6911c-d552-480d-84eb-b59527f3c208"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:16: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "8f99dc52-eaf3-47c0-9892-849095773105"
+ ],
+ "x-ms-correlation-request-id": [
+ "148c4801-8412-4fb0-9a05-82606006946a"
+ ],
+ "x-ms-arm-service-request-id": [
+ "9aed6448-562f-462b-8afd-bb07775cc682"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151701Z:148c4801-8412-4fb0-9a05-82606006946a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:17: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "2f1b2fd7-3f05-4f7e-a158-9ede671e27b8"
+ ],
+ "x-ms-correlation-request-id": [
+ "5147bb70-59b5-4123-ac80-18213fde2b91"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c587b585-0d96-4235-afaa-5372edcc471a"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151711Z:5147bb70-59b5-4123-ac80-18213fde2b91"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:17: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "927bdc6a-69a9-4207-a5c2-c29de0974322"
+ ],
+ "x-ms-correlation-request-id": [
+ "57889450-c434-43d4-b63b-2e12535d52ff"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c0cef5ec-d876-4cb8-959d-3d4d20b3cb67"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151721Z:57889450-c434-43d4-b63b-2e12535d52ff"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:17: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0d8eec35-8d24-4795-8019-2028752744b0"
+ ],
+ "x-ms-correlation-request-id": [
+ "61c48b29-50cb-4fb4-bbd9-cff9ac9152a8"
+ ],
+ "x-ms-arm-service-request-id": [
+ "dc5dfe3c-0b84-4512-a743-f0b60b03e552"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151731Z:61c48b29-50cb-4fb4-bbd9-cff9ac9152a8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:17: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/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ff66817f-3be3-4d03-9257-b639a74cdb2c"
+ ],
+ "x-ms-correlation-request-id": [
+ "626c2e67-86ba-4d99-9744-d30542cb28f2"
+ ],
+ "x-ms-arm-service-request-id": [
+ "72836d56-ce19-49e1-96f0-4f0f30aef399"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151742Z:626c2e67-86ba-4d99-9744-d30542cb28f2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:17:41 GMT"
+ ],
+ "Content-Length": [
+ "50"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operationResults/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9uUmVzdWx0cy81MTNlMGIxNy01ZjEyLTRhYmMtOGI0OC1jMjM2NGZlMzVlMjA/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.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/northeurope/operationResults/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01"
+ ],
+ "x-ms-request-id": [
+ "513e0b17-5f12-4abc-8b48-c2364fe35e20"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/513e0b17-5f12-4abc-8b48-c2364fe35e20?api-version=2019-11-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "53097bdd-d62c-4ff2-8037-5c773c2fc3b2"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f240c17b-0f1e-4601-85a9-97f5e6522b61"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151742Z:7c39ffa9-9439-4aab-bce6-0aa567d71e83"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:17:41 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourceGroups/ps9260/providers/Microsoft.Network/applicationGateways/ps1477?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlR3JvdXBzL3BzOTI2MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9wczE0Nzc/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f660f88a-0373-45db-a26e-b28f5bcc6ec3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.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/northeurope/operationResults/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ca5b0701-eb81-4158-b7ce-5afef782989a"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "7aa7f4d0-6e3f-407b-8c82-0c40ab2efa7a"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c5187dd5-942f-460f-9d2d-3ebdf092a679"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T151744Z:7aa7f4d0-6e3f-407b-8c82-0c40ab2efa7a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:17:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "433b5860-367d-4dd6-8693-644dcab10ca6"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b99eb38-9632-41d4-bbb4-400d26510b39"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0a7bf47b-761b-422b-b351-a40296a251dc"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151755Z:9b99eb38-9632-41d4-bbb4-400d26510b39"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:17: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/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "eee8a02d-f8ca-4f42-8108-607cef11599f"
+ ],
+ "x-ms-correlation-request-id": [
+ "62f00e60-4a0b-4399-9e3e-d08923aef2d0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a18f4546-2edf-46a9-a588-4f8369ed0ea6"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151805Z:62f00e60-4a0b-4399-9e3e-d08923aef2d0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:18: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/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "479cddfa-d3cc-40f0-a8d6-600275f1a6b1"
+ ],
+ "x-ms-correlation-request-id": [
+ "fcd6377d-ada3-4ccd-becf-cb3cecc45e8e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4f195a25-19e0-4f13-91e4-96cbca2a42bc"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151815Z:fcd6377d-ada3-4ccd-becf-cb3cecc45e8e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:18: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/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "aefda448-0d6b-47bf-aa97-12c65ce7382a"
+ ],
+ "x-ms-correlation-request-id": [
+ "a2abcba3-7853-4ebd-97b1-58953ae5315e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "76ad02a2-9b02-4f67-8b3d-ceb0df15d01e"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151825Z:a2abcba3-7853-4ebd-97b1-58953ae5315e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:18: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/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c5b53825-550d-45d2-838e-df4b36045b37"
+ ],
+ "x-ms-correlation-request-id": [
+ "81c0b52b-0301-487e-942e-6436c71983f9"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0359b63c-26cc-41f8-b95d-9b3fc4cad244"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151836Z:81c0b52b-0301-487e-942e-6436c71983f9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:18:35 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0e0e197c-44f4-492b-9c05-2bbfa4f7b18c"
+ ],
+ "x-ms-correlation-request-id": [
+ "5799886f-ac6a-43d6-87ef-7c88f1a5f575"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a767594d-4a0d-485b-a7e6-092d5a309ac2"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151846Z:5799886f-ac6a-43d6-87ef-7c88f1a5f575"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:18: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/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "8f32001e-20ea-40f1-ad96-33ea209879aa"
+ ],
+ "x-ms-correlation-request-id": [
+ "53085f43-add3-4c49-ba8c-b911ecebd9d6"
+ ],
+ "x-ms-arm-service-request-id": [
+ "cb44d040-d6ee-416b-97e8-70299eb2f02c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T151856Z:53085f43-add3-4c49-ba8c-b911ecebd9d6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:18: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/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "5045e499-8076-45e2-96d9-63b4083f3815"
+ ],
+ "x-ms-correlation-request-id": [
+ "689af724-1bf2-4c2d-8d16-69c47fb7f790"
+ ],
+ "x-ms-arm-service-request-id": [
+ "396a6476-5dd1-4ff8-afcd-21476cfe4593"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151907Z:689af724-1bf2-4c2d-8d16-69c47fb7f790"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:19: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/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "698d7f7d-3497-4aa2-b8ca-f67785682972"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a7ba173-0e04-4351-8c85-bca63aa35a6f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b2c828b0-d170-48bb-9f1e-a1dab99f1280"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151917Z:3a7ba173-0e04-4351-8c85-bca63aa35a6f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:19: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/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "653a5354-199f-4bdb-82ee-196631b13661"
+ ],
+ "x-ms-correlation-request-id": [
+ "031e8141-002c-4651-a276-35156e29e02f"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e1f36a4d-ba00-4113-bc13-58fc037d3311"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151927Z:031e8141-002c-4651-a276-35156e29e02f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:19: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/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b1a9df6c-c0e7-4111-bf7d-316a3512fad2"
+ ],
+ "x-ms-correlation-request-id": [
+ "c972bfcc-3095-46de-8fe9-508ec72f85c0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "7e04b564-74bf-49e6-aaa4-2784c41f6566"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151937Z:c972bfcc-3095-46de-8fe9-508ec72f85c0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:19: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/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "da67f4b6-58ff-4a1a-88c6-fdbf4cfd3cdd"
+ ],
+ "x-ms-correlation-request-id": [
+ "0b8027c6-a5c3-4c08-808f-425ab0eae313"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c1d9282e-6185-4817-85ea-e28db7ec3584"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151947Z:0b8027c6-a5c3-4c08-808f-425ab0eae313"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:19: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/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3aaf6892-5379-4813-bb7b-665424db8064"
+ ],
+ "x-ms-correlation-request-id": [
+ "e487ed01-cf39-4350-b6df-3c741e8591a6"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e2c9e250-85a5-409f-a409-bce8ad43b938"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T151958Z:e487ed01-cf39-4350-b6df-3c741e8591a6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:19:57 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3d917758-a7ad-44be-8407-b3eee9f239fd"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c4c3ad3-feec-4eb4-a68f-d42b08ed5943"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1c7bd78b-8c92-42fa-9335-9e0546ab052e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152008Z:4c4c3ad3-feec-4eb4-a68f-d42b08ed5943"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:20: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/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "856c041a-f65b-4617-beae-f49e4ff9be20"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4a97f74-7c1b-4ba4-bd46-9836fc346279"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a3cc9557-7a0d-402e-ae30-a8d2166c3804"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T152019Z:c4a97f74-7c1b-4ba4-bd46-9836fc346279"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:20:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "62d2d476-22e0-46ce-b6a1-b5f1516a150a"
+ ],
+ "x-ms-correlation-request-id": [
+ "6ead69df-2cc7-405b-a667-d8ac73a42776"
+ ],
+ "x-ms-arm-service-request-id": [
+ "ff5c0e1a-ff1e-4b36-a4af-667cd982ac90"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T152029Z:6ead69df-2cc7-405b-a667-d8ac73a42776"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:20: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/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ddb41309-cba8-42d6-b67f-4508ecf132a6"
+ ],
+ "x-ms-correlation-request-id": [
+ "019d3bfd-717b-44f0-8332-c62def2a0337"
+ ],
+ "x-ms-arm-service-request-id": [
+ "181aa46d-702b-424e-8721-47c53dfb1260"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T152039Z:019d3bfd-717b-44f0-8332-c62def2a0337"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:20:39 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9ucy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f92e6d05-a0d6-475a-be8f-49e13f64c54a"
+ ],
+ "x-ms-correlation-request-id": [
+ "f32ad8e8-093a-4247-a9e7-677692b3022a"
+ ],
+ "x-ms-arm-service-request-id": [
+ "254a5404-bc9e-4e55-be56-a095978f9cc8"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T152049Z:f32ad8e8-093a-4247-a9e7-677692b3022a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:20:49 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operationResults/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvbm9ydGhldXJvcGUvb3BlcmF0aW9uUmVzdWx0cy9jYTViMDcwMS1lYjgxLTQxNTgtYjdjZS01YWZlZjc4Mjk4OWE/YXBpLXZlcnNpb249MjAxOS0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.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/northeurope/operationResults/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01"
+ ],
+ "x-ms-request-id": [
+ "ca5b0701-eb81-4158-b7ce-5afef782989a"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/providers/Microsoft.Network/locations/northeurope/operations/ca5b0701-eb81-4158-b7ce-5afef782989a?api-version=2019-11-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "7aa7f4d0-6e3f-407b-8c82-0c40ab2efa7a"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c5187dd5-942f-460f-9d2d-3ebdf092a679"
+ ],
+ "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": [
+ "SOUTHINDIA:20200115T152050Z:421c7c98-86f7-4020-bc37-6c3c5fb7e8a5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:20:49 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/resourcegroups/ps9260?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L3Jlc291cmNlZ3JvdXBzL3BzOTI2MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "625ff04f-bf4f-499b-8d30-9155412349d1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "e55a0776-6c9d-4cea-9b72-be28e6d0c79b"
+ ],
+ "x-ms-correlation-request-id": [
+ "e55a0776-6c9d-4cea-9b72-be28e6d0c79b"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152055Z:e55a0776-6c9d-4cea-9b72-be28e6d0c79b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:20:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5qQXRUazlTVkVoRlZWSlBVRVVpTENKcWIySk1iMk5oZEdsdmJpSTZJbTV2Y25Sb1pYVnliM0JsSW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
+ "x-ms-request-id": [
+ "bb32ee82-5bc8-4669-8a70-f1f5b6fdee1d"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb32ee82-5bc8-4669-8a70-f1f5b6fdee1d"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152110Z:bb32ee82-5bc8-4669-8a70-f1f5b6fdee1d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:21:09 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5qQXRUazlTVkVoRlZWSlBVRVVpTENKcWIySk1iMk5oZEdsdmJpSTZJbTV2Y25Sb1pYVnliM0JsSW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-request-id": [
+ "c1ffc352-424d-41cb-80fb-3c046fcfea63"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1ffc352-424d-41cb-80fb-3c046fcfea63"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152125Z:c1ffc352-424d-41cb-80fb-3c046fcfea63"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:21:25 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5qQXRUazlTVkVoRlZWSlBVRVVpTENKcWIySk1iMk5oZEdsdmJpSTZJbTV2Y25Sb1pYVnliM0JsSW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11973"
+ ],
+ "x-ms-request-id": [
+ "058bef92-9936-47d9-b249-26d8cd4e2d35"
+ ],
+ "x-ms-correlation-request-id": [
+ "058bef92-9936-47d9-b249-26d8cd4e2d35"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152141Z:058bef92-9936-47d9-b249-26d8cd4e2d35"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:21:40 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5qQXRUazlTVkVoRlZWSlBVRVVpTENKcWIySk1iMk5oZEdsdmJpSTZJbTV2Y25Sb1pYVnliM0JsSW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11972"
+ ],
+ "x-ms-request-id": [
+ "3b1785e2-f09b-4115-ab65-79c8dad90b76"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b1785e2-f09b-4115-ab65-79c8dad90b76"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152156Z:3b1785e2-f09b-4115-ab65-79c8dad90b76"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:21:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5qQXRUazlTVkVoRlZWSlBVRVVpTENKcWIySk1iMk5oZEdsdmJpSTZJbTV2Y25Sb1pYVnliM0JsSW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11971"
+ ],
+ "x-ms-request-id": [
+ "cc9125ae-721f-4235-a186-ef315346f198"
+ ],
+ "x-ms-correlation-request-id": [
+ "cc9125ae-721f-4235-a186-ef315346f198"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152211Z:cc9125ae-721f-4235-a186-ef315346f198"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:22:11 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5qQXRUazlTVkVoRlZWSlBVRVVpTENKcWIySk1iMk5oZEdsdmJpSTZJbTV2Y25Sb1pYVnliM0JsSW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11970"
+ ],
+ "x-ms-request-id": [
+ "d62efa60-ebb9-4fb4-96a1-29cc49b5fe24"
+ ],
+ "x-ms-correlation-request-id": [
+ "d62efa60-ebb9-4fb4-96a1-29cc49b5fe24"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152227Z:d62efa60-ebb9-4fb4-96a1-29cc49b5fe24"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:22:26 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5qQXRUazlTVkVoRlZWSlBVRVVpTENKcWIySk1iMk5oZEdsdmJpSTZJbTV2Y25Sb1pYVnliM0JsSW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11969"
+ ],
+ "x-ms-request-id": [
+ "89c22c13-1b6e-4f97-946e-f097a4b5c797"
+ ],
+ "x-ms-correlation-request-id": [
+ "89c22c13-1b6e-4f97-946e-f097a4b5c797"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152242Z:89c22c13-1b6e-4f97-946e-f097a4b5c797"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:22:42 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5qQXRUazlTVkVoRlZWSlBVRVVpTENKcWIySk1iMk5oZEdsdmJpSTZJbTV2Y25Sb1pYVnliM0JsSW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11968"
+ ],
+ "x-ms-request-id": [
+ "c404e54c-44e3-4a2f-b648-a8c72d393f1f"
+ ],
+ "x-ms-correlation-request-id": [
+ "c404e54c-44e3-4a2f-b648-a8c72d393f1f"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152257Z:c404e54c-44e3-4a2f-b648-a8c72d393f1f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:22:57 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5qQXRUazlTVkVoRlZWSlBVRVVpTENKcWIySk1iMk5oZEdsdmJpSTZJbTV2Y25Sb1pYVnliM0JsSW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11967"
+ ],
+ "x-ms-request-id": [
+ "67e69224-1a7d-47ab-910d-e628921522b1"
+ ],
+ "x-ms-correlation-request-id": [
+ "67e69224-1a7d-47ab-910d-e628921522b1"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152313Z:67e69224-1a7d-47ab-910d-e628921522b1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:23:12 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5qQXRUazlTVkVoRlZWSlBVRVVpTENKcWIySk1iMk5oZEdsdmJpSTZJbTV2Y25Sb1pYVnliM0JsSW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "x-ms-request-id": [
+ "158e640f-da36-43ae-81db-26c83a70a40d"
+ ],
+ "x-ms-correlation-request-id": [
+ "158e640f-da36-43ae-81db-26c83a70a40d"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152328Z:158e640f-da36-43ae-81db-26c83a70a40d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:23:27 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5qQXRUazlTVkVoRlZWSlBVRVVpTENKcWIySk1iMk5oZEdsdmJpSTZJbTV2Y25Sb1pYVnliM0JsSW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11965"
+ ],
+ "x-ms-request-id": [
+ "b129560e-e0bc-4c77-a11c-5119172e4480"
+ ],
+ "x-ms-correlation-request-id": [
+ "b129560e-e0bc-4c77-a11c-5119172e4480"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152344Z:b129560e-e0bc-4c77-a11c-5119172e4480"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:23:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5qQXRUazlTVkVoRlZWSlBVRVVpTENKcWIySk1iMk5oZEdsdmJpSTZJbTV2Y25Sb1pYVnliM0JsSW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11964"
+ ],
+ "x-ms-request-id": [
+ "fc4b3c26-5a8a-456d-ab9d-ba96862ed719"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc4b3c26-5a8a-456d-ab9d-ba96862ed719"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152359Z:fc4b3c26-5a8a-456d-ab9d-ba96862ed719"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:23:58 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5qQXRUazlTVkVoRlZWSlBVRVVpTENKcWIySk1iMk5oZEdsdmJpSTZJbTV2Y25Sb1pYVnliM0JsSW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11963"
+ ],
+ "x-ms-request-id": [
+ "fc1edd4f-7503-4267-8d40-9a7400eb326c"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc1edd4f-7503-4267-8d40-9a7400eb326c"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152414Z:fc1edd4f-7503-4267-8d40-9a7400eb326c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:24:13 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5qQXRUazlTVkVoRlZWSlBVRVVpTENKcWIySk1iMk5oZEdsdmJpSTZJbTV2Y25Sb1pYVnliM0JsSW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11962"
+ ],
+ "x-ms-request-id": [
+ "85888a2f-5a68-4418-97b3-bf12c30b6c28"
+ ],
+ "x-ms-correlation-request-id": [
+ "85888a2f-5a68-4418-97b3-bf12c30b6c28"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152430Z:85888a2f-5a68-4418-97b3-bf12c30b6c28"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:24:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f7e1a56e-347b-4103-87c7-e775a3e11ac5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNjAtTk9SVEhFVVJPUEUiLCJqb2JMb2NhdGlvbiI6Im5vcnRoZXVyb3BlIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjdlMWE1NmUtMzQ3Yi00MTAzLTg3YzctZTc3NWEzZTExYWM1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5qQXRUazlTVkVoRlZWSlBVRVVpTENKcWIySk1iMk5oZEdsdmJpSTZJbTV2Y25Sb1pYVnliM0JsSW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11961"
+ ],
+ "x-ms-request-id": [
+ "cc4d0c3c-e2fc-4ce0-96c6-63700ed8d795"
+ ],
+ "x-ms-correlation-request-id": [
+ "cc4d0c3c-e2fc-4ce0-96c6-63700ed8d795"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20200115T152430Z:cc4d0c3c-e2fc-4ce0-96c6-63700ed8d795"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 15 Jan 2020 15:24:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-ApplicationGatewayCRUDRewriteRuleSetWithUrlConfiguration": [
+ "ps9260",
+ "ps1477",
+ "ps8908",
+ "ps1037",
+ "ps3365",
+ "ps1081",
+ "ps4996",
+ "ps340",
+ "ps2533",
+ "ps5393",
+ "ps6876",
+ "ps4441",
+ "ps759",
+ "ps5194",
+ "ps8186",
+ "ps7439",
+ "ps7168",
+ "ps3936",
+ "ps5677",
+ "ps860",
+ "ps9342",
+ "ps4868",
+ "ps1722",
+ "ps4385",
+ "ps7442",
+ "ps4398",
+ "ps7381",
+ "ps9917",
+ "ps7973",
+ "ps4622",
+ "ps82"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "f7e1a56e-347b-4103-87c7-e775a3e11ac5"
+ }
+}
\ No newline at end of file
diff --git a/src/Network/Network/ApplicationGateway/RewriteRuleActionSet/AzureApplicationGatewayRewriteRuleActionSetBase.cs b/src/Network/Network/ApplicationGateway/RewriteRuleActionSet/AzureApplicationGatewayRewriteRuleActionSetBase.cs
index a4fb76209241..c4901bf713e9 100644
--- a/src/Network/Network/ApplicationGateway/RewriteRuleActionSet/AzureApplicationGatewayRewriteRuleActionSetBase.cs
+++ b/src/Network/Network/ApplicationGateway/RewriteRuleActionSet/AzureApplicationGatewayRewriteRuleActionSetBase.cs
@@ -33,6 +33,12 @@ public class AzureApplicationGatewayRewriteRuleActionSetBase : NetworkBaseCmdlet
[ValidateNotNullOrEmpty]
public List ResponseHeaderConfiguration { get; set; }
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Url configuration.")]
+ [ValidateNotNullOrEmpty]
+ public PSApplicationGatewayUrlConfiguration UrlConfiguration { get; set; }
+
public override void ExecuteCmdlet()
{
base.ExecuteCmdlet();
@@ -44,7 +50,8 @@ public PSApplicationGatewayRewriteRuleActionSet NewObject()
var rewriteRuleActionSet = new PSApplicationGatewayRewriteRuleActionSet
{
RequestHeaderConfigurations = this.RequestHeaderConfiguration,
- ResponseHeaderConfigurations = this.ResponseHeaderConfiguration
+ ResponseHeaderConfigurations = this.ResponseHeaderConfiguration,
+ UrlConfiguration = this.UrlConfiguration
};
return rewriteRuleActionSet;
diff --git a/src/Network/Network/ApplicationGateway/RewriteRuleUrlConfiguration/AzureApplicationGatewayRewriteRuleUrlConfigurationBase.cs b/src/Network/Network/ApplicationGateway/RewriteRuleUrlConfiguration/AzureApplicationGatewayRewriteRuleUrlConfigurationBase.cs
new file mode 100644
index 000000000000..e90956c985ac
--- /dev/null
+++ b/src/Network/Network/ApplicationGateway/RewriteRuleUrlConfiguration/AzureApplicationGatewayRewriteRuleUrlConfigurationBase.cs
@@ -0,0 +1,54 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Network
+{
+ using Microsoft.Azure.Commands.Network.Models;
+ using System.Management.Automation;
+
+ public class AzureApplicationGatewayRewriteRuleUrlConfigurationBase : NetworkBaseCmdlet
+ {
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Url path value.")]
+ public string ModifiedPath { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Url query string value.")]
+ public string ModifiedQueryString { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Flag to re-evaluate the url path map provided in path based request routing rules using modified path.")]
+ public SwitchParameter Reroute { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ base.ExecuteCmdlet();
+ }
+
+ public PSApplicationGatewayUrlConfiguration NewObject()
+ {
+ var urlConfiguration = new PSApplicationGatewayUrlConfiguration
+ {
+ ModifiedPath = this.ModifiedPath,
+ ModifiedQueryString = this.ModifiedQueryString,
+ Reroute = this.Reroute.IsPresent
+ };
+
+ return urlConfiguration;
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/Network/Network/ApplicationGateway/RewriteRuleUrlConfiguration/NewAzureApplicationGatewayRewriteRuleUrlConfigurationCommand.cs b/src/Network/Network/ApplicationGateway/RewriteRuleUrlConfiguration/NewAzureApplicationGatewayRewriteRuleUrlConfigurationCommand.cs
new file mode 100644
index 000000000000..c94fa8d86172
--- /dev/null
+++ b/src/Network/Network/ApplicationGateway/RewriteRuleUrlConfiguration/NewAzureApplicationGatewayRewriteRuleUrlConfigurationCommand.cs
@@ -0,0 +1,29 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Network
+{
+ using Microsoft.Azure.Commands.Network.Models;
+ using System.Management.Automation;
+
+ [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApplicationGatewayRewriteRuleUrlConfiguration", SupportsShouldProcess = true), OutputType(typeof(PSApplicationGatewayUrlConfiguration))]
+ public class NewAzureApplicationGatewayRewriteRuleUrlConfigurationCommand : AzureApplicationGatewayRewriteRuleUrlConfigurationBase
+ {
+ public override void ExecuteCmdlet()
+ {
+ base.ExecuteCmdlet();
+ WriteObject(base.NewObject());
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1
index bf5a6941c78a..558b3df80c87 100644
--- a/src/Network/Network/Az.Network.psd1
+++ b/src/Network/Network/Az.Network.psd1
@@ -172,7 +172,8 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate',
'Set-AzApplicationGatewayRewriteRuleSet',
'New-AzApplicationGatewayRewriteRule',
'New-AzApplicationGatewayRewriteRuleActionSet',
- 'New-AzApplicationGatewayRewriteRuleHeaderConfiguration',
+ 'New-AzApplicationGatewayRewriteRuleHeaderConfiguration',
+ 'New-AzApplicationGatewayRewriteRuleUrlConfiguration',
'Get-AzApplicationGatewayAvailableServerVariableAndHeader',
'New-AzApplicationGatewayRewriteRuleCondition',
'Add-AzApplicationGatewayRedirectConfiguration',
diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md
index 7294f0101b27..9d185f16b6ac 100644
--- a/src/Network/Network/ChangeLog.md
+++ b/src/Network/Network/ChangeLog.md
@@ -20,6 +20,11 @@
## Upcoming Release
* Change `Start-AzVirtualNetworkGatewayConnectionPacketCapture.md` and `Start-AzVirtualnetworkGatewayPacketCapture.md` FilterData option examples.
+* Added support for Url Confiugration in Rewrite Rules Action Set in the Application Gateway
+ - New cmdlets added:
+ - New-AzApplicationGatewayRewriteRuleUrlConfiguration
+ - Cmdlets updated with optional parameter - UrlConfiguration
+ - New-AzApplicationGatewayRewriteRuleActionSet
## Version 2.0.0
* Change all cmdlets for PrivateEndpointConnection to support generic service provider.
diff --git a/src/Network/Network/Common/NetworkResourceManagerProfile.cs b/src/Network/Network/Common/NetworkResourceManagerProfile.cs
index ddfe27e419a3..de8a556635ba 100644
--- a/src/Network/Network/Common/NetworkResourceManagerProfile.cs
+++ b/src/Network/Network/Common/NetworkResourceManagerProfile.cs
@@ -905,6 +905,7 @@ private static void Initialize()
cfg.CreateMap();
cfg.CreateMap();
cfg.CreateMap();
+ cfg.CreateMap();
cfg.CreateMap();
cfg.CreateMap();
cfg.CreateMap();
@@ -967,6 +968,7 @@ private static void Initialize()
cfg.CreateMap();
cfg.CreateMap();
cfg.CreateMap();
+ cfg.CreateMap();
cfg.CreateMap();
cfg.CreateMap();
cfg.CreateMap();
diff --git a/src/Network/Network/Models/PSApplicationGatewayRewriteRuleActionSet.cs b/src/Network/Network/Models/PSApplicationGatewayRewriteRuleActionSet.cs
index 8764fb189dd1..e643d4ccba39 100644
--- a/src/Network/Network/Models/PSApplicationGatewayRewriteRuleActionSet.cs
+++ b/src/Network/Network/Models/PSApplicationGatewayRewriteRuleActionSet.cs
@@ -23,6 +23,7 @@ public partial class PSApplicationGatewayRewriteRuleActionSet
{
public List RequestHeaderConfigurations { get; set; }
public List ResponseHeaderConfigurations { get; set; }
+ public PSApplicationGatewayUrlConfiguration UrlConfiguration { get; set; }
[JsonIgnore]
public string RequestHeaderConfigurationsText
@@ -35,5 +36,11 @@ public string ResponseHeaderConfigurationsText
{
get { return JsonConvert.SerializeObject(ResponseHeaderConfigurations, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); }
}
+
+ [JsonIgnore]
+ public string UrlConfigurationText
+ {
+ get { return JsonConvert.SerializeObject(UrlConfiguration, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); }
+ }
}
}
diff --git a/src/Network/Network/Models/PSApplicationGatewayUrlConfiguration.cs b/src/Network/Network/Models/PSApplicationGatewayUrlConfiguration.cs
new file mode 100644
index 000000000000..9e360d5533af
--- /dev/null
+++ b/src/Network/Network/Models/PSApplicationGatewayUrlConfiguration.cs
@@ -0,0 +1,30 @@
+// Copyright (c) Microsoft. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ using Microsoft.WindowsAzure.Commands.Common.Attributes;
+
+ public class PSApplicationGatewayUrlConfiguration
+ {
+ [Ps1Xml(Target = ViewControl.Table)]
+ public string ModifiedPath { get; set; }
+
+ [Ps1Xml(Target = ViewControl.Table)]
+ public string ModifiedQueryString { get; set; }
+
+ [Ps1Xml(Target = ViewControl.Table)]
+ public bool Reroute { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/src/Network/Network/help/Az.Network.md b/src/Network/Network/help/Az.Network.md
index b33dfaf32398..60b83cf5d887 100644
--- a/src/Network/Network/help/Az.Network.md
+++ b/src/Network/Network/help/Az.Network.md
@@ -680,6 +680,9 @@ Adds a condition to the RewriteRule for an application gateway.
### [New-AzApplicationGatewayRewriteRuleHeaderConfiguration](New-AzApplicationGatewayRewriteRuleHeaderConfiguration.md)
Creates a rewrite rule header configuration for an application gateway.
+### [New-AzApplicationGatewayRewriteRuleUrlConfiguration](New-AzApplicationGatewayRewriteRuleUrlConfiguration.md)
+Creates a rewrite rule url configuration for an application gateway
+
### [New-AzApplicationGatewayRewriteRuleSet](New-AzApplicationGatewayRewriteRuleSet.md)
Creates a request routing rule for an application gateway.
diff --git a/src/Network/Network/help/New-AzApplicationGatewayRewriteRuleActionSet.md b/src/Network/Network/help/New-AzApplicationGatewayRewriteRuleActionSet.md
index 6a4eef1c07f1..00dbf3a0d86a 100644
--- a/src/Network/Network/help/New-AzApplicationGatewayRewriteRuleActionSet.md
+++ b/src/Network/Network/help/New-AzApplicationGatewayRewriteRuleActionSet.md
@@ -16,6 +16,7 @@ Creates a rewrite rule action set for an application gateway.
New-AzApplicationGatewayRewriteRuleActionSet
[-RequestHeaderConfiguration ]
[-ResponseHeaderConfiguration ]
+ [-UrlConfiguration [Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration]]
[-DefaultProfile ] []
```
@@ -26,7 +27,7 @@ New-AzApplicationGatewayRewriteRuleActionSet
### Example 1
```powershell
-PS C:\> $action = New-AzApplicationGatewayRewriteRuleActionSet -ResponseHeaderConfiguration $hc
+PS C:\> $action = New-AzApplicationGatewayRewriteRuleActionSet -ResponseHeaderConfiguration $hc -UrlConfiguration $urlConfiguration
```
This command creates a rewrite rule action set and stores the result in the variable named $action.
@@ -78,6 +79,20 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -UrlConfiguration
+Url Configuration for action set
+
+```yaml
+Type: Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration
+Parameter Sets: (All)
+Aliases:
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
@@ -106,3 +121,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[New-AzApplicationGatewayRewriteRule](./New-AzApplicationGatewayRewriteRule.md)
[New-AzApplicationGatewayRewriteRuleHeaderConfiguration](./New-AzApplicationGatewayRewriteRuleHeaderConfiguration.md)
+
+[New-AzApplicationGatewayRewriteRuleUrlConfiguration](./New-AzApplicationGatewayRewriteRuleUrlConfiguration.md)
\ No newline at end of file
diff --git a/src/Network/Network/help/New-AzApplicationGatewayRewriteRuleUrlConfiguration.md b/src/Network/Network/help/New-AzApplicationGatewayRewriteRuleUrlConfiguration.md
new file mode 100644
index 000000000000..6d4701d48def
--- /dev/null
+++ b/src/Network/Network/help/New-AzApplicationGatewayRewriteRuleUrlConfiguration.md
@@ -0,0 +1,119 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
+Module Name: Az.Network
+online version: https://docs.microsoft.com/en-us/powershell/module/az.network/new-azapplicationgatewayrewriteruleurlconfiguration
+schema: 2.0.0
+---
+
+# New-AzApplicationGatewayRewriteRuleUrlConfiguration
+
+## SYNOPSIS
+Creates a rewrite rule url configuration for an application gateway.
+
+## SYNTAX
+
+```
+New-AzApplicationGatewayRewriteRuleUrlConfiguration [-ModifiedPath ] [-ModifiedQueryString ] [-Reroute]
+ [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+**The AzApplicationGatewayRewriteRuleUrlConfiguration** cmdlet creates a rewrite rule url configuration for an Azure application gateway.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> $urlConfiguration = New-AzApplicationGatewayRewriteRuleUrlConfiguration -ModifiedPath "/abc" -ModifiedQueryString "x=y&a=b"
+```
+
+This command creates a rewrite rule url configuration and stores the result in the variable named $urlConfiguration.
+
+If you want to update any existing UrlConfiguration, you can do it by creating a new UrlConfiguration and assigning the new UrlConfiguration to the UrlConfiguration property of Rewrite Rule Action Set.
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ModifiedPath
+Url path value.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ModifiedQueryString
+Url query string value.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Reroute
+Flag to re-evaluate the url path map provided in path based request routing rules using modified path.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### None
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration
+
+## NOTES
+
+## RELATED LINKS
+
+[Add-AzApplicationGatewayRewriteRuleSet](./Add-AzApplicationGatewayRewriteRuleSet.md)
+
+[Get-AzApplicationGatewayRewriteRuleSet](./Get-AzApplicationGatewayRewriteRuleSet.md)
+
+[New-AzApplicationGatewayRewriteRuleSet](./New-AzApplicationGatewayRewriteRuleSet.md)
+
+[Remove-AzApplicationGatewayRewriteRuleSet](./Remove-AzApplicationGatewayRewriteRuleSet.md)
+
+[Set-AzApplicationGatewayRewriteRuleSet](./Set-AzApplicationGatewayRewriteRuleSet.md)
+
+[New-AzApplicationGatewayRewriteRule](./New-AzApplicationGatewayRewriteRule.md)
+
+[New-AzApplicationGatewayRewriteRuleActionSet](./New-AzApplicationGatewayRewriteRuleActionSet.md)
\ No newline at end of file