diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallIpGroupTests.cs b/src/Network/Network.Test/ScenarioTests/AzureFirewallIpGroupTests.cs new file mode 100644 index 000000000000..4bcfdd6dea9e --- /dev/null +++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallIpGroupTests.cs @@ -0,0 +1,38 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Network.Test.ScenarioTests; +using Microsoft.Azure.ServiceManagement.Common.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit; +using Xunit.Abstractions; + +namespace Commands.Network.Test.ScenarioTests +{ + public class AzureFirewallIpGroupTests : NetworkTestRunner + { + public AzureFirewallIpGroupTests(ITestOutputHelper output) + : base(output) + { + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, NrpTeamAlias.azurefirewall)] + public void TestAzureFirewallIpGroup() + { + TestRunner.RunTestScript("Test-AzureFirewallIpGroup"); + } + } +} diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallIpGroupTests.ps1 b/src/Network/Network.Test/ScenarioTests/AzureFirewallIpGroupTests.ps1 new file mode 100644 index 000000000000..223dca742c64 --- /dev/null +++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallIpGroupTests.ps1 @@ -0,0 +1,248 @@ +#---------------------------------------------------------------------------------- + +# +# 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. +# ---------------------------------------------------------------------------------- + +function Check-CmdletReturnType +{ + param($cmdletName, $cmdletReturn) + + $cmdletData = Get-Command $cmdletName + Assert-NotNull $cmdletData + [array]$cmdletReturnTypes = $cmdletData.OutputType.Name | Foreach-Object { return ($_ -replace "Microsoft.Azure.Commands.Network.Models.","") } + [array]$cmdletReturnTypes = $cmdletReturnTypes | Foreach-Object { return ($_ -replace "System.","") } + $realReturnType = $cmdletReturn.GetType().Name -replace "Microsoft.Azure.Commands.Network.Models.","" + return $cmdletReturnTypes -contains $realReturnType +} + + +<# +.SYNOPSIS +Test creating new IpGroups +#> +function Test-AzureFirewallIpGroup +{ + # Setup + $rgname = Get-ResourceGroupName + $rglocation = Get-ProviderLocation ResourceManagement "southcentralus" + $location = Get-ProviderLocation ResourceManagement "southcentralus" + $ipGroupLocation = Get-ProviderLocation ResourceManagement "southcentralus" + $ipGroupName1 = Get-ResourceName + $ipGroupName2 = Get-ResourceName + + $azureFirewallName = Get-ResourceName + #$resourceTypeParent = "Microsoft.Network/AzureFirewalls" + #$location = Get-ProviderLocation $resourceTypeParent "eastus2euap" + + $vnetName = Get-ResourceName + $subnetName = "AzureFirewallSubnet" + $publicIpName = Get-ResourceName + + # AzureFirewallApplicationRuleCollection + $someAppRuleCollectionName = "someAppRuleCollection" + $someAppRuleCollectionPriority = 100 + $someAppRuleCollectionActionType = "Allow" + + # AzureFirewallApplicationRule 1 + $someAppRuleName = "someAppRule" + $someAppRuleFqdn1 = "*bing.com" + $someAppRuleProtocol1 = "http:8080" + $someAppRulePort1 = 8080 + $someAppRuleProtocolType1 = "http" + + # AzureFirewallApplicationRule 2 + $someOtherAppRuleName = "someOtherAppRule" + $someOtherAppRuleFqdn1 = "sql1.database.windows.net" + $someOtherAppRuleProtocol1 = "mssql:1433" + $someOtherAppRulePort1 = 1433 + $someOtherAppRuleProtocolType1 = "mssql" + + # AzureFirewallNetworkRuleCollection + $networkRcName = "networkRc" + $networkRcPriority = 200 + $networkRcActionType = "Deny" + + + # AzureFirewallNetworkRule 1 + $someNetworkRuleName = "networkRule" + $someNetworkRuleDesc = "desc1" + $someNetworkRuleSourceAddress1 = "10.0.0.0" + $someNetworkRuleSourceAddress2 = "111.1.0.0/24" + $someNetworkRuleDestinationAddress1 = "*" + $someNetworkRuleProtocol1 = "UDP" + $someNetworkRuleProtocol2 = "TCP" + $someNetworkRuleProtocol3 = "ICMP" + $someNetworkRuleDestinationPort1 = "90" + + # AzureFirewallNatRuleCollection + $someNatRuleCollectionName = "natRc" + $someNatRuleCollectionPriority = 200 + + # AzureFirewallNatRule 2 + $someNatRuleName = "natRule2" + $someNatRuleDesc = "desc2" + $someNatRuleSourceAddress1 = "10.0.0.0" + $someNatRuleSourceAddress2 = "111.1.0.0/24" + $someNatRuleProtocol1 = "UDP" + $someNatRuleProtocol2 = "TCP" + $someNatRuleDestinationPort1 = "95" + $someNatRuleTranslatedFqdn = "server1.internal.com" + $someNatRuleTranslatedPort = "96" + + try + { + # Create the resource group + New-AzResourceGroup -Name $rgname -Location $rglocation -Tags @{ testtag = "testval" } + + # Create IpGroup + $ipGroup1 = New-AzIpGroup -ResourceGroupName $rgname -location $ipgroupLocation -Name $ipGroupName1 -IpAddress 10.0.0.0/24,11.9.0.0/24 + $returnedIpGroup1 = Get-AzIpGroup -ResourceGroupName $rgname -Name $ipGroupName1 + Assert-AreEqual $returnedIpGroup1.ResourceGroupName $ipGroup1.ResourceGroupName + Assert-AreEqual $returnedIpGroup1.Name $ipGroup1.Name + + $ipGroup2 = New-AzIpGroup -ResourceGroupName $rgname -location $ipgroupLocation -Name $ipGroupName2 -IpAddress 12.0.0.0/24,13.9.0.0/24 + $returnedIpGroup2 = Get-AzIpGroup -ResourceGroupName $rgname -Name $ipGroupName2 + Assert-AreEqual $returnedIpGroup2.ResourceGroupName $ipGroup2.ResourceGroupName + Assert-AreEqual $returnedIpGroup2.Name $ipGroup2.Name + + # Create the Virtual Network + $subnet = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.0.0/24 + $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $ipGroupLocation -AddressPrefix 10.0.0.0/16 -Subnet $subnet + # Get full subnet details + $subnet = Get-AzVirtualNetworkSubnetConfig -VirtualNetwork $vnet -Name $subnetName + + # Create public ip + $publicip = New-AzPublicIpAddress -ResourceGroupName $rgname -name $publicIpName -location $location -AllocationMethod Static -Sku Standard + + # Create AzureFirewall (with no rules, ThreatIntel is in Alert mode by default) + $azureFirewall = New-AzFirewall –Name $azureFirewallName -ResourceGroupName $rgname -Location $location -VirtualNetworkName $vnetName -PublicIpName $publicIpName + + # + # Application Rule Section + # + + # Create Application Rules + $someAppRule = New-AzFirewallApplicationRule -Name $someAppRuleName -SourceIpGroup $ipGroup1.Id -Protocol $someAppRuleProtocol1 -TargetFqdn $someAppRuleFqdn1 + + $someOtherAppRule = New-AzFirewallApplicationRule -Name $someOtherAppRuleName -SourceIpGroup $ipGroup1.Id,$ipGroup2.Id -Protocol $someOtherAppRuleProtocol1 -TargetFqdn $someOtherAppRuleFqdn1 + + # Create Application Rule Collection with 1 rule + $someAppRuleCollection = New-AzFirewallApplicationRuleCollection -Name $someAppRuleCollectionName -Priority $someAppRuleCollectionPriority -Rule $someAppRule -ActionType $someAppRuleCollectionActionType + + # Add a rule to the rule collection using AddRule method + $someAppRuleCollection.AddRule($someOtherAppRule) + + # Add ApplicationRuleCollections to the Firewall using method AddApplicationRuleCollection + $azureFirewall.AddApplicationRuleCollection($someAppRuleCollection) + + + # + # Network Rule Section + # + + # Create Network Rule + + $someNetworkRule = New-AzFirewallNetworkRule -Name $someNetworkRuleName -Description $someNetworkRuleDesc -Protocol $someNetworkRuleProtocol1, $someNetworkRuleProtocol2 -SourceAddress $someNetworkRuleSourceAddress1, $someNetworkRuleSourceAddress2 -SourceIpGroup $ipGroup1.Id -DestinationIpGroup $ipGroup2.Id -DestinationPort $someNetworkRuleDestinationPort1 + $someNetworkRule.AddProtocol($someNetworkRuleProtocol3) + + # Create Network Rule Collection + $someNetworkRuleCollection = New-AzFirewallNetworkRuleCollection -Name $networkRcName -Priority $networkRcPriority -Rule $someNetworkRule -ActionType $networkRcActionType + + # Add this Network Rule to the rule collection + #$someNetworkRuleCollection.AddRule($someNetworkRule) + + # Add NetworkRuleCollections to the Firewall using method AddNetworkRuleCollection + $azureFirewall.AddNetworkRuleCollection($someNetworkRuleCollection) + + # + # NAT Rule Section + # + + # Create NAT rule + $someNatRule = New-AzFirewallNatRule -Name $someNatRuleName -Description $someNatRuleDesc -Protocol $someNatRuleProtocol1 -SourceIpGroup $ipGroup1.Id, $ipGroup2.Id -DestinationAddress $publicip.IpAddress -DestinationPort $someNatRuleDestinationPort1 -TranslatedFqdn $someNatRuleTranslatedFqdn -TranslatedPort $someNatRuleTranslatedPort + $someNatRule.AddProtocol($someNatRuleProtocol2) + + # Create a NAT Rule Collection + $someNatRuleCollection = New-AzFirewallNatRuleCollection -Name $someNatRuleCollectionName -Priority $someNatRuleCollectionPriority -Rule $someNatRule + + # Add NAT Rule to rule Collection + #$someNatRuleCollection.AddRule($someNatRule) + + # Add NatRuleCollections to the Firewall using method AddNatRuleCollection + $azureFirewall.AddNatRuleCollection($someNatRuleCollection) + + # Set AzureFirewall + #Set-AzFirewall -AzureFirewall $azureFirewall + + # Get AzureFirewall + #$getAzureFirewall = Get-AzFirewall -name $azureFirewallName -ResourceGroupName $rgName + + $getAzureFirewall = $azureFirewall + + # + # Verification - Application Rule + # + + # Verify application rule collection 2 + $someAppRuleCollection2 = $getAzureFirewall.GetApplicationRuleCollectionByName($someAppRuleCollectionName) + + # Verify application rule + $getSomeAppRule = $someAppRuleCollection2.GetRuleByName($someAppRule.Name) + Assert-AreEqual 1 $getSomeAppRule.SourceIpGroups.Count + + $getSomeOtherAppRule = $someAppRuleCollection2.GetRuleByName($someOtherAppRule.Name) + Assert-AreEqual 2 $getSomeOtherAppRule.SourceIpGroups.Count + + # + # Verification - Network Rule + # + + # Verify Network rule collection 2 + $someNetworkRuleCollection2 = $getAzureFirewall.GetNetworkRuleCollectionByName($someNetworkRuleCollection.Name) + + # Verify Network rule + $getSomeNetworkRule = $someNetworkRuleCollection2.GetRuleByName($someNetworkRule.Name) + Assert-AreEqual 1 $getSomeNetworkRule.SourceIpGroups.Count + Assert-AreEqual 1 $getSomeNetworkRule.DestinationIpGroups.Count + + # + # Verification - NAT Rule + # + $someNatRuleCollection2 = $getAzureFirewall.GetNatRuleCollectionByName($someNatRuleCollection.Name) + $getSomeNatRule = $someNatRuleCollection2.GetRuleByName($someNatRule.Name) + Assert-AreEqual 2 $getSomeNatRule.SourceIpGroups.Count + + # Delete IpGroup + $deleteIpGroup = Remove-AzIpGroup -ResourceGroupName $rgname -Name $ipGroupName1 -PassThru -Force + Assert-AreEqual true $deleteIpGroup + + $deleteIpGroup = Remove-AzIpGroup -ResourceGroupName $rgname -Name $ipGroupName2 -PassThru -Force + Assert-AreEqual true $deleteIpGroup + + # Delete AzureFirewall + $delete = Remove-AzFirewall -ResourceGroupName $rgname -name $azureFirewallName -PassThru -Force + Assert-AreEqual true $delete + + # Delete VirtualNetwork + $delete = Remove-AzVirtualNetwork -ResourceGroupName $rgname -name $vnetName -PassThru -Force + Assert-AreEqual true $delete + + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } + + +} \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallIpGroupTests/TestAzureFirewallIpGroup.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallIpGroupTests/TestAzureFirewallIpGroup.json new file mode 100644 index 000000000000..4bfef8997810 --- /dev/null +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallIpGroupTests/TestAzureFirewallIpGroup.json @@ -0,0 +1,7486 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourcegroups/ps4336?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlZ3JvdXBzL3BzNDMzNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c037a402-b662-4362-a4c3-82a279e15b84" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "36dbce32-f888-47f2-8adc-4f13f92a3c8d" + ], + "x-ms-correlation-request-id": [ + "36dbce32-f888-47f2-8adc-4f13f92a3c8d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202209Z:36dbce32-f888-47f2-8adc-4f13f92a3c8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:08 GMT" + ], + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336\",\r\n \"name\": \"ps4336\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps2155?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvaXBHcm91cHMvcHMyMTU1P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66f7b004-59dc-4329-a7b9-df08f6164d26" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4701e141-f458-40c0-8f61-490b74f1f644" + ], + "x-ms-correlation-request-id": [ + "4701e141-f458-40c0-8f61-490b74f1f644" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202209Z:4701e141-f458-40c0-8f61-490b74f1f644" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "143" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/ipGroups/ps2155' under resource group 'ps4336' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps2155?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvaXBHcm91cHMvcHMyMTU1P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "9beba23a-721d-4b64-b21f-38ccd66d7ff2" + ], + "x-ms-correlation-request-id": [ + "9beba23a-721d-4b64-b21f-38ccd66d7ff2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202224Z:9beba23a-721d-4b64-b21f-38ccd66d7ff2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:23 GMT" + ], + "Content-Length": [ + "437" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewalls\": [],\r\n \"ipAddresses\": [\r\n \"10.0.0.0/24\",\r\n \"11.9.0.0/24\"\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps2155\",\r\n \"name\": \"ps2155\",\r\n \"type\": \"Microsoft.Network/IpGroups\",\r\n \"eTag\": \"b278218b-2e28-4f8b-8077-248f20a8ec6d\",\r\n \"location\": \"southcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps2155?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvaXBHcm91cHMvcHMyMTU1P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "212bc1b2-e277-46a6-912f-bc57e5a73d46" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "aeb17b4c-e37e-4a72-baf9-5c9a5825ce0c" + ], + "x-ms-correlation-request-id": [ + "aeb17b4c-e37e-4a72-baf9-5c9a5825ce0c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202224Z:aeb17b4c-e37e-4a72-baf9-5c9a5825ce0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:23 GMT" + ], + "Content-Length": [ + "437" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewalls\": [],\r\n \"ipAddresses\": [\r\n \"10.0.0.0/24\",\r\n \"11.9.0.0/24\"\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps2155\",\r\n \"name\": \"ps2155\",\r\n \"type\": \"Microsoft.Network/IpGroups\",\r\n \"eTag\": \"b278218b-2e28-4f8b-8077-248f20a8ec6d\",\r\n \"location\": \"southcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps2155?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvaXBHcm91cHMvcHMyMTU1P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "584e62d2-6e05-4352-91e5-c0eff3fa9e6b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "05d030a4-809a-4806-8aef-baa92552d2ca" + ], + "x-ms-correlation-request-id": [ + "05d030a4-809a-4806-8aef-baa92552d2ca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202224Z:05d030a4-809a-4806-8aef-baa92552d2ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:24 GMT" + ], + "Content-Length": [ + "437" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewalls\": [],\r\n \"ipAddresses\": [\r\n \"10.0.0.0/24\",\r\n \"11.9.0.0/24\"\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps2155\",\r\n \"name\": \"ps2155\",\r\n \"type\": \"Microsoft.Network/IpGroups\",\r\n \"eTag\": \"b278218b-2e28-4f8b-8077-248f20a8ec6d\",\r\n \"location\": \"southcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps2155?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvaXBHcm91cHMvcHMyMTU1P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipAddresses\": [\r\n \"10.0.0.0/24\",\r\n \"11.9.0.0/24\"\r\n ]\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d1b585e7-258a-4179-b6d8-77a4d43fbda4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "133" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "034e0d14-1745-4759-b071-5adbfa4dbbf9" + ], + "x-ms-correlation-request-id": [ + "9438e956-f47e-479a-9ffe-8931aedf0c9f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/nfvOperations/034e0d14-1745-4759-b071-5adbfa4dbbf9?api-version=2019-09-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202213Z:9438e956-f47e-479a-9ffe-8931aedf0c9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:13 GMT" + ], + "Content-Length": [ + "436" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewalls\": [],\r\n \"ipAddresses\": [\r\n \"10.0.0.0/24\",\r\n \"11.9.0.0/24\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps2155\",\r\n \"name\": \"ps2155\",\r\n \"type\": \"Microsoft.Network/IpGroups\",\r\n \"eTag\": \"b278218b-2e28-4f8b-8077-248f20a8ec6d\",\r\n \"location\": \"southcentralus\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/nfvOperations/034e0d14-1745-4759-b071-5adbfa4dbbf9?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbmZ2T3BlcmF0aW9ucy8wMzRlMGQxNC0xNzQ1LTQ3NTktYjA3MS01YWRiZmE0ZGJiZjk/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "20a58641-2c69-4ff2-a157-122313b5d657" + ], + "x-ms-correlation-request-id": [ + "835bec75-9fa2-40d7-aeb8-25ddac0353f5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202224Z:835bec75-9fa2-40d7-aeb8-25ddac0353f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:23 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps8999?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvaXBHcm91cHMvcHM4OTk5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "110b2b24-bfc6-49bf-9742-b0e507a2eaf1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "721c1e15-1eb8-4964-bac1-fcc2f3a3db25" + ], + "x-ms-correlation-request-id": [ + "721c1e15-1eb8-4964-bac1-fcc2f3a3db25" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202225Z:721c1e15-1eb8-4964-bac1-fcc2f3a3db25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "143" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/ipGroups/ps8999' under resource group 'ps4336' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps8999?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvaXBHcm91cHMvcHM4OTk5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "09a7597f-4a54-48e0-bbe4-5ce8179d8902" + ], + "x-ms-correlation-request-id": [ + "09a7597f-4a54-48e0-bbe4-5ce8179d8902" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202238Z:09a7597f-4a54-48e0-bbe4-5ce8179d8902" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:38 GMT" + ], + "Content-Length": [ + "437" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewalls\": [],\r\n \"ipAddresses\": [\r\n \"12.0.0.0/24\",\r\n \"13.9.0.0/24\"\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps8999\",\r\n \"name\": \"ps8999\",\r\n \"type\": \"Microsoft.Network/IpGroups\",\r\n \"eTag\": \"f8c8d53c-534f-425b-9a62-ecb23c202ad5\",\r\n \"location\": \"southcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps8999?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvaXBHcm91cHMvcHM4OTk5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "542af6f6-d648-4750-a747-936a091517fc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "1fe7df8b-cea9-479b-bd72-6cd39af1a343" + ], + "x-ms-correlation-request-id": [ + "1fe7df8b-cea9-479b-bd72-6cd39af1a343" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202238Z:1fe7df8b-cea9-479b-bd72-6cd39af1a343" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:38 GMT" + ], + "Content-Length": [ + "437" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewalls\": [],\r\n \"ipAddresses\": [\r\n \"12.0.0.0/24\",\r\n \"13.9.0.0/24\"\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps8999\",\r\n \"name\": \"ps8999\",\r\n \"type\": \"Microsoft.Network/IpGroups\",\r\n \"eTag\": \"f8c8d53c-534f-425b-9a62-ecb23c202ad5\",\r\n \"location\": \"southcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps8999?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvaXBHcm91cHMvcHM4OTk5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5dba9f6d-71f2-4e30-83ee-2914894a8eaa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "c2a846bb-57b8-4549-95b5-26a29067b097" + ], + "x-ms-correlation-request-id": [ + "c2a846bb-57b8-4549-95b5-26a29067b097" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202239Z:c2a846bb-57b8-4549-95b5-26a29067b097" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:39 GMT" + ], + "Content-Length": [ + "437" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewalls\": [],\r\n \"ipAddresses\": [\r\n \"12.0.0.0/24\",\r\n \"13.9.0.0/24\"\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps8999\",\r\n \"name\": \"ps8999\",\r\n \"type\": \"Microsoft.Network/IpGroups\",\r\n \"eTag\": \"f8c8d53c-534f-425b-9a62-ecb23c202ad5\",\r\n \"location\": \"southcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps8999?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvaXBHcm91cHMvcHM4OTk5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipAddresses\": [\r\n \"12.0.0.0/24\",\r\n \"13.9.0.0/24\"\r\n ]\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "daaa7d1f-6d0b-4211-93a7-c12f826650d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "133" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b716e327-fe34-44be-891c-d78594d5910b" + ], + "x-ms-correlation-request-id": [ + "f8beffa7-5d19-4fc3-a4ed-3b4c5b48a041" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/nfvOperations/b716e327-fe34-44be-891c-d78594d5910b?api-version=2019-09-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202227Z:f8beffa7-5d19-4fc3-a4ed-3b4c5b48a041" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:26 GMT" + ], + "Content-Length": [ + "436" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewalls\": [],\r\n \"ipAddresses\": [\r\n \"12.0.0.0/24\",\r\n \"13.9.0.0/24\"\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps8999\",\r\n \"name\": \"ps8999\",\r\n \"type\": \"Microsoft.Network/IpGroups\",\r\n \"eTag\": \"f8c8d53c-534f-425b-9a62-ecb23c202ad5\",\r\n \"location\": \"southcentralus\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/nfvOperations/b716e327-fe34-44be-891c-d78594d5910b?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvbmZ2T3BlcmF0aW9ucy9iNzE2ZTMyNy1mZTM0LTQ0YmUtODkxYy1kNzg1OTRkNTkxMGI/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dbf9c011-0214-4a24-aa71-ffad7601d93a" + ], + "x-ms-correlation-request-id": [ + "056a3dea-e8af-4981-883e-9325d58b5a10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202238Z:056a3dea-e8af-4981-883e-9325d58b5a10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:38 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDcwNz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7708b770-fd5f-4264-a29e-2ba3138c0613" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "49d5cd8d-54c0-48b3-b688-94949f3c8e35" + ], + "x-ms-correlation-request-id": [ + "49d5cd8d-54c0-48b3-b688-94949f3c8e35" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202239Z:49d5cd8d-54c0-48b3-b688-94949f3c8e35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:39 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/ps4707' under resource group 'ps4336' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDcwNz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"47884d37-40fb-4a3b-8033-e0de4eccfa8f\"" + ], + "x-ms-request-id": [ + "917b9227-0e67-4f30-bfe2-d0556f50cb5f" + ], + "x-ms-correlation-request-id": [ + "0b4342c6-c72d-408c-8933-5b53a0d9e165" + ], + "x-ms-arm-service-request-id": [ + "78773c66-900a-418f-8c1e-917b18038946" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202245Z:0b4342c6-c72d-408c-8933-5b53a0d9e165" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:44 GMT" + ], + "Content-Length": [ + "1302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4707\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707\",\r\n \"etag\": \"W/\\\"47884d37-40fb-4a3b-8033-e0de4eccfa8f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3b1f8bdf-ca2d-4bf4-b8ed-400297051d44\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"47884d37-40fb-4a3b-8033-e0de4eccfa8f\\\"\",\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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDcwNz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "254cdef3-70de-4a45-8472-a86e7e2fdcf4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"47884d37-40fb-4a3b-8033-e0de4eccfa8f\"" + ], + "x-ms-request-id": [ + "01916251-c881-42c3-b868-e6ae7ed1e9ea" + ], + "x-ms-correlation-request-id": [ + "b1997326-7494-4da6-b71b-4414ae901625" + ], + "x-ms-arm-service-request-id": [ + "64bb4e68-7223-4b60-95d1-805e7bf22498" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202245Z:b1997326-7494-4da6-b71b-4414ae901625" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:44 GMT" + ], + "Content-Length": [ + "1302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4707\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707\",\r\n \"etag\": \"W/\\\"47884d37-40fb-4a3b-8033-e0de4eccfa8f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3b1f8bdf-ca2d-4bf4-b8ed-400297051d44\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"47884d37-40fb-4a3b-8033-e0de4eccfa8f\\\"\",\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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDcwNz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0751938b-2fe4-4b40-ab4c-45c59bcd7d32" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"47884d37-40fb-4a3b-8033-e0de4eccfa8f\"" + ], + "x-ms-request-id": [ + "027059fb-f4ca-4a09-b25e-8fa4aaf5bd60" + ], + "x-ms-correlation-request-id": [ + "cb9a4733-a167-4b0a-baa5-f83702e215e3" + ], + "x-ms-arm-service-request-id": [ + "cd935df8-79d2-4ccd-8ed7-a6c62ab175b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202249Z:cb9a4733-a167-4b0a-baa5-f83702e215e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:49 GMT" + ], + "Content-Length": [ + "1302" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4707\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707\",\r\n \"etag\": \"W/\\\"47884d37-40fb-4a3b-8033-e0de4eccfa8f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3b1f8bdf-ca2d-4bf4-b8ed-400297051d44\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"47884d37-40fb-4a3b-8033-e0de4eccfa8f\\\"\",\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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDcwNz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "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\": \"AzureFirewallSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n },\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a77d32ba-4b4a-4ecc-89dd-b3a76dca47b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "640" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "3ec3db59-471a-4b30-979a-772f62037f66" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/3ec3db59-471a-4b30-979a-772f62037f66?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "f0f355d0-e3e0-4c7d-9044-650f621eb87d" + ], + "x-ms-arm-service-request-id": [ + "c7959c57-1bf2-4365-97c9-293251cffec6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202241Z:f0f355d0-e3e0-4c7d-9044-650f621eb87d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:41 GMT" + ], + "Content-Length": [ + "1300" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4707\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707\",\r\n \"etag\": \"W/\\\"989ba2e2-7c93-4d0b-83eb-561731d38131\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3b1f8bdf-ca2d-4bf4-b8ed-400297051d44\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"989ba2e2-7c93-4d0b-83eb-561731d38131\\\"\",\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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/3ec3db59-471a-4b30-979a-772f62037f66?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8zZWMzZGI1OS00NzFhLTRiMzAtOTc5YS03NzJmNjIwMzdmNjY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "86b2e344-aadd-4968-8697-ae4bbfded8d6" + ], + "x-ms-correlation-request-id": [ + "ef116978-cdaa-4555-ae83-28ca7c65d232" + ], + "x-ms-arm-service-request-id": [ + "031a2dd0-01a8-4c8f-b310-d872fc1814e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202244Z:ef116978-cdaa-4555-ae83-28ca7c65d232" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/publicIPAddresses/ps5083?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM1MDgzP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "219d0135-d61d-401f-8d4a-2f4b2ee92794" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "a435e189-4a7c-4f8f-b1da-552b6259619b" + ], + "x-ms-correlation-request-id": [ + "a435e189-4a7c-4f8f-b1da-552b6259619b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202245Z:a435e189-4a7c-4f8f-b1da-552b6259619b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:45 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/ps5083' under resource group 'ps4336' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/publicIPAddresses/ps5083?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM1MDgzP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"881374a0-e102-42d0-bf9d-3972a199225b\"" + ], + "x-ms-request-id": [ + "c33bef69-546b-4496-a772-e6e9cc60b40a" + ], + "x-ms-correlation-request-id": [ + "7971ce79-ba4a-4e50-a420-6653036cd7c7" + ], + "x-ms-arm-service-request-id": [ + "8882f01d-27fa-4374-b324-571229af38bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202248Z:7971ce79-ba4a-4e50-a420-6653036cd7c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:48 GMT" + ], + "Content-Length": [ + "634" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5083\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/publicIPAddresses/ps5083\",\r\n \"etag\": \"W/\\\"881374a0-e102-42d0-bf9d-3972a199225b\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e5aa6250-ba1f-4628-bdd2-df5aa6bd00d5\",\r\n \"ipAddress\": \"13.66.80.5\",\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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/publicIPAddresses/ps5083?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM1MDgzP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba8c33c7-321d-49d7-a7c2-83e357a79f70" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"881374a0-e102-42d0-bf9d-3972a199225b\"" + ], + "x-ms-request-id": [ + "f860b83b-fb37-423f-b2ab-d028a0704b8d" + ], + "x-ms-correlation-request-id": [ + "ac718feb-8a6a-4a61-a970-a7f5f5749996" + ], + "x-ms-arm-service-request-id": [ + "e5ed0448-93c5-4849-a56e-e625e73f4452" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202248Z:ac718feb-8a6a-4a61-a970-a7f5f5749996" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:48 GMT" + ], + "Content-Length": [ + "634" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5083\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/publicIPAddresses/ps5083\",\r\n \"etag\": \"W/\\\"881374a0-e102-42d0-bf9d-3972a199225b\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e5aa6250-ba1f-4628-bdd2-df5aa6bd00d5\",\r\n \"ipAddress\": \"13.66.80.5\",\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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/publicIPAddresses/ps5083?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM1MDgzP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "daef14f4-916c-4685-9f92-b69675e82351" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"881374a0-e102-42d0-bf9d-3972a199225b\"" + ], + "x-ms-request-id": [ + "7a748221-9d59-4d07-b6a3-9fdfe714f170" + ], + "x-ms-correlation-request-id": [ + "b8631588-14f8-458e-9f1c-50f9b20cdfdd" + ], + "x-ms-arm-service-request-id": [ + "aee472ca-2402-4a9e-aabc-7f542ebb899a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202249Z:b8631588-14f8-458e-9f1c-50f9b20cdfdd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:49 GMT" + ], + "Content-Length": [ + "634" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5083\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/publicIPAddresses/ps5083\",\r\n \"etag\": \"W/\\\"881374a0-e102-42d0-bf9d-3972a199225b\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e5aa6250-ba1f-4628-bdd2-df5aa6bd00d5\",\r\n \"ipAddress\": \"13.66.80.5\",\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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/publicIPAddresses/ps5083?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM1MDgzP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "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\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4059ca15-6587-4428-8152-1e26717ae50b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "462adcaf-5c40-4bfd-96cd-7073a6e4989a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/462adcaf-5c40-4bfd-96cd-7073a6e4989a?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "9375a9aa-ccaf-49c1-a417-4d6e0093691a" + ], + "x-ms-arm-service-request-id": [ + "98ec7f6f-4cbe-42c1-814e-27c8f48b8b66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202247Z:9375a9aa-ccaf-49c1-a417-4d6e0093691a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:47 GMT" + ], + "Content-Length": [ + "601" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5083\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/publicIPAddresses/ps5083\",\r\n \"etag\": \"W/\\\"8493b060-3c86-44bd-8167-a35f919ba3cd\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e5aa6250-ba1f-4628-bdd2-df5aa6bd00d5\",\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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/462adcaf-5c40-4bfd-96cd-7073a6e4989a?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NjJhZGNhZi01YzQwLTRiZmQtOTZjZC03MDczYTZlNDk4OWE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b47f0bc1-a599-47ae-bb41-480431b93c1d" + ], + "x-ms-correlation-request-id": [ + "d6aa156c-da07-4ac3-983d-2a92bd7ebc14" + ], + "x-ms-arm-service-request-id": [ + "2b15ccde-78bd-43d6-8e49-973591a8b05d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202248Z:d6aa156c-da07-4ac3-983d-2a92bd7ebc14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:48 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/azureFirewalls/ps9264?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM5MjY0P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80a79bae-b5c2-4806-b36d-4dfb7276bc75" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "49142c97-6430-425b-8299-77eace2673d9" + ], + "x-ms-correlation-request-id": [ + "49142c97-6430-425b-8299-77eace2673d9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202249Z:49142c97-6430-425b-8299-77eace2673d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "149" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/azureFirewalls/ps9264' under resource group 'ps4336' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/azureFirewalls/ps9264?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM5MjY0P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"d05c8f9d-87a1-4b72-b333-92ef100c29c4\"" + ], + "x-ms-request-id": [ + "12beadc7-6ec4-4a65-a697-a8b3639b6c58" + ], + "x-ms-correlation-request-id": [ + "62928aeb-e7e9-4d21-8091-912bb455e35c" + ], + "x-ms-arm-service-request-id": [ + "6aca1d6c-14b7-4e59-8494-4157b9d4f6bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202644Z:62928aeb-e7e9-4d21-8091-912bb455e35c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:26:44 GMT" + ], + "Content-Length": [ + "1637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9264\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/azureFirewalls/ps9264\",\r\n \"etag\": \"W/\\\"d05c8f9d-87a1-4b72-b333-92ef100c29c4\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/azureFirewalls/ps9264/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"d05c8f9d-87a1-4b72-b333-92ef100c29c4\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/publicIPAddresses/ps5083\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/azureFirewalls/ps9264?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM5MjY0P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44b627c1-627e-4d7d-92d6-14a7bec3be03" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"d05c8f9d-87a1-4b72-b333-92ef100c29c4\"" + ], + "x-ms-request-id": [ + "4201e808-bc5d-4504-a035-6d561c3a04bc" + ], + "x-ms-correlation-request-id": [ + "ae107902-3a87-4181-bad8-0f324bfa9f82" + ], + "x-ms-arm-service-request-id": [ + "3cc62b36-88a4-42f7-b82a-cc417a47f1b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202645Z:ae107902-3a87-4181-bad8-0f324bfa9f82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:26:44 GMT" + ], + "Content-Length": [ + "1637" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9264\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/azureFirewalls/ps9264\",\r\n \"etag\": \"W/\\\"d05c8f9d-87a1-4b72-b333-92ef100c29c4\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/azureFirewalls/ps9264/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"d05c8f9d-87a1-4b72-b333-92ef100c29c4\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/publicIPAddresses/ps5083\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/azureFirewalls/ps9264?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM5MjY0P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"networkRuleCollections\": [],\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707/subnets/AzureFirewallSubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/publicIPAddresses/ps5083\"\r\n }\r\n },\r\n \"name\": \"AzureFirewallIpConfiguration0\"\r\n }\r\n ],\r\n \"threatIntelMode\": \"Alert\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {}\r\n },\r\n \"zones\": [],\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53cfc931-b058-4af5-bf3b-c24975711771" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "866" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "46cec06e-1163-4711-9409-47c66ad1eff4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "983498eb-d1bb-43e9-9c31-0e3b47818902" + ], + "x-ms-arm-service-request-id": [ + "cadb5eea-653e-42b7-90b1-b0aab14f9b9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202251Z:983498eb-d1bb-43e9-9c31-0e3b47818902" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:22:51 GMT" + ], + "Content-Length": [ + "1593" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps9264\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/azureFirewalls/ps9264\",\r\n \"etag\": \"W/\\\"086ed0ed-aa1f-46ea-808f-a4e667cc63ac\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/azureFirewalls/ps9264/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"086ed0ed-aa1f-46ea-808f-a4e667cc63ac\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/publicIPAddresses/ps5083\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "44d7494b-71e0-42e3-b2d9-cdc5df8e807b" + ], + "x-ms-correlation-request-id": [ + "1d9eb5b1-a1a1-4fa0-a3b1-13824e85a458" + ], + "x-ms-arm-service-request-id": [ + "3803358c-f610-417c-bbdb-f68299f549cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202301Z:1d9eb5b1-a1a1-4fa0-a3b1-13824e85a458" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:23: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "109c2045-c2ea-478d-87cc-b8b3c07019fd" + ], + "x-ms-correlation-request-id": [ + "f7247c75-40e4-4d2b-828b-1feb055bc54c" + ], + "x-ms-arm-service-request-id": [ + "9ed69bb5-d8bf-46fd-89d0-8b5fada23816" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202311Z:f7247c75-40e4-4d2b-828b-1feb055bc54c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:23: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cf27e07a-9b78-482b-828f-d51eea121f0d" + ], + "x-ms-correlation-request-id": [ + "f8e5d039-993a-41df-a55b-d3ed0cdedcf1" + ], + "x-ms-arm-service-request-id": [ + "c2324f94-4816-45c5-a0de-b0834482ff58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202321Z:f8e5d039-993a-41df-a55b-d3ed0cdedcf1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:23: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "acb12fed-f911-4eb2-916f-1db24f443815" + ], + "x-ms-correlation-request-id": [ + "d87dbc59-525b-4bd2-a780-a0a39a7016d0" + ], + "x-ms-arm-service-request-id": [ + "022b78d3-60ae-4c42-8248-cc3867b9a1ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202331Z:d87dbc59-525b-4bd2-a780-a0a39a7016d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:23: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fb8202cf-c1c4-420e-b19d-7aa7d5056d96" + ], + "x-ms-correlation-request-id": [ + "e987195b-0cd9-4ca1-8014-085ca37950dd" + ], + "x-ms-arm-service-request-id": [ + "16753d93-e944-4fee-854a-58a843d1ca86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202341Z:e987195b-0cd9-4ca1-8014-085ca37950dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:23: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "547068ba-a40c-4af9-a00e-f0213ba3e30e" + ], + "x-ms-correlation-request-id": [ + "f39bc4df-7b2f-4671-8ad9-5bb4e531e93f" + ], + "x-ms-arm-service-request-id": [ + "a256142c-8925-457a-a3b1-47b3cafb2109" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202352Z:f39bc4df-7b2f-4671-8ad9-5bb4e531e93f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:23:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "803545d8-73f7-4cfe-adb1-b216d766586e" + ], + "x-ms-correlation-request-id": [ + "63bfa6aa-2d85-44a0-9bed-e54bb2ce24b0" + ], + "x-ms-arm-service-request-id": [ + "04be168f-c497-49d4-bbc5-9b9ee4b6bff0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202402Z:63bfa6aa-2d85-44a0-9bed-e54bb2ce24b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:24: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "07ca9742-5380-4b6e-868e-e9d37dd6d59d" + ], + "x-ms-correlation-request-id": [ + "44e0ace9-f10d-44a7-ac05-c7ac1b3e7737" + ], + "x-ms-arm-service-request-id": [ + "a1196522-a07d-4ea8-84f2-cb6833fcf100" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202412Z:44e0ace9-f10d-44a7-ac05-c7ac1b3e7737" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:24:12 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "99924ba0-0781-4708-9338-1fba4cfd7393" + ], + "x-ms-correlation-request-id": [ + "3a93ea62-f4f4-4ceb-91eb-f69b5aa70746" + ], + "x-ms-arm-service-request-id": [ + "48c37400-b7c9-4a89-acdd-75ce903ba19f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202422Z:3a93ea62-f4f4-4ceb-91eb-f69b5aa70746" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:24:22 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2ace0bf5-1201-47c0-81b6-0b775de4d0bd" + ], + "x-ms-correlation-request-id": [ + "3336eb1a-7051-467d-930a-c229eeeb8b14" + ], + "x-ms-arm-service-request-id": [ + "2d364354-f52b-4ffd-9060-6d3752a3517a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202432Z:3336eb1a-7051-467d-930a-c229eeeb8b14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:24: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2ed23075-92a3-402a-944f-8f5cd57d1700" + ], + "x-ms-correlation-request-id": [ + "a669824a-9d15-466b-adf3-ebfa23b3b33f" + ], + "x-ms-arm-service-request-id": [ + "f7f434e6-8d4b-45da-82a8-686d7d09fe0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202443Z:a669824a-9d15-466b-adf3-ebfa23b3b33f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:24: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bcba1659-2b34-401e-8a4b-b00f03122371" + ], + "x-ms-correlation-request-id": [ + "01344fcb-029a-47b0-bb22-0d0f00ee46b3" + ], + "x-ms-arm-service-request-id": [ + "e8595bb1-b442-44b5-be49-eab8f39e3461" + ], + "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": [ + "WESTUS:20191203T202453Z:01344fcb-029a-47b0-bb22-0d0f00ee46b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:24: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "81c08165-64c2-4a55-8482-1ec2bf0f7397" + ], + "x-ms-correlation-request-id": [ + "2ddd8026-c6b0-4d68-a209-1ea79238135c" + ], + "x-ms-arm-service-request-id": [ + "dc306871-e600-4f59-b175-5bcf99039f82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202503Z:2ddd8026-c6b0-4d68-a209-1ea79238135c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:25: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7e70e92a-5595-4988-a2d9-98656e9c267c" + ], + "x-ms-correlation-request-id": [ + "7cd2c1bd-0742-4a5c-988d-18fe5a28a998" + ], + "x-ms-arm-service-request-id": [ + "c8350369-964b-45c5-833b-c5e042c99d43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202513Z:7cd2c1bd-0742-4a5c-988d-18fe5a28a998" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:25:12 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1dddc440-ae37-4e1e-af96-053c4cbcd0da" + ], + "x-ms-correlation-request-id": [ + "6680192e-ff89-4779-8572-2fa6c8d9a179" + ], + "x-ms-arm-service-request-id": [ + "5dc06e7e-cf55-487f-b022-57fdb7b21150" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202523Z:6680192e-ff89-4779-8572-2fa6c8d9a179" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:25:22 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4b26c9c7-5969-4c0a-9253-d43549c5fcee" + ], + "x-ms-correlation-request-id": [ + "b204d86a-8424-48e7-aea0-c2b49f01e5e7" + ], + "x-ms-arm-service-request-id": [ + "5cc04774-a4eb-4749-bb3d-475a69e38c4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202533Z:b204d86a-8424-48e7-aea0-c2b49f01e5e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:25: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fc26cbba-949e-4b27-8955-d5aebe686f6d" + ], + "x-ms-correlation-request-id": [ + "463027eb-e13b-450e-bc86-8d32dbe73d55" + ], + "x-ms-arm-service-request-id": [ + "10b0bc87-2e1d-474e-9a39-39d06b51a594" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202543Z:463027eb-e13b-450e-bc86-8d32dbe73d55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:25: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bb4289f9-2f1b-497e-a933-da5fd91da67b" + ], + "x-ms-correlation-request-id": [ + "95ac5e9d-877b-43e0-bec0-a54be13d7ca9" + ], + "x-ms-arm-service-request-id": [ + "ade6ea5b-79a4-4431-9896-d8502cf93809" + ], + "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": [ + "WESTUS:20191203T202553Z:95ac5e9d-877b-43e0-bec0-a54be13d7ca9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:25: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2e859d29-efef-4f05-a753-e94a37964c73" + ], + "x-ms-correlation-request-id": [ + "9ef1b4cd-cb5b-494e-87e9-064f85e3557e" + ], + "x-ms-arm-service-request-id": [ + "75ce5b3c-9fed-4abb-9770-06c445703d56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202604Z:9ef1b4cd-cb5b-494e-87e9-064f85e3557e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:26: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "75485ca6-70ee-4acd-b732-1207c4cf5434" + ], + "x-ms-correlation-request-id": [ + "4023c8e3-f189-41da-84a5-182aaf9f2c82" + ], + "x-ms-arm-service-request-id": [ + "1cabf605-1a21-46b6-b3c9-154a240e545a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202614Z:4023c8e3-f189-41da-84a5-182aaf9f2c82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:26:14 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1d4e968e-8772-4318-bae5-630bb0d418a7" + ], + "x-ms-correlation-request-id": [ + "4365966f-819d-4fc7-9609-bed37c6c94b7" + ], + "x-ms-arm-service-request-id": [ + "cf962a42-af23-4f7a-a591-e0902120c2b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202624Z:4365966f-819d-4fc7-9609-bed37c6c94b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:26: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c4ef139d-6a29-49a4-9694-627cb67e12bc" + ], + "x-ms-correlation-request-id": [ + "9c716366-94ae-47e6-b138-149c5319bc4d" + ], + "x-ms-arm-service-request-id": [ + "d6f0e59e-e8de-497a-8226-c013d6356a56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202634Z:9c716366-94ae-47e6-b138-149c5319bc4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:26: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/46cec06e-1163-4711-9409-47c66ad1eff4?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy80NmNlYzA2ZS0xMTYzLTQ3MTEtOTQwOS00N2M2NmFkMWVmZjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dc5e0659-43af-4605-b753-d1cd72551426" + ], + "x-ms-correlation-request-id": [ + "949a5c88-2cb5-4f9a-9627-92ab403f927e" + ], + "x-ms-arm-service-request-id": [ + "e39b7a1f-7005-4eed-8930-177ff72534af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202644Z:949a5c88-2cb5-4f9a-9627-92ab403f927e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:26: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps2155?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvaXBHcm91cHMvcHMyMTU1P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad05beb3-3a36-47cb-a1fc-078f19004cbc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "2c2ada43-a00c-4b0b-b3a9-d9a0e3c42f3e" + ], + "x-ms-correlation-request-id": [ + "2c2ada43-a00c-4b0b-b3a9-d9a0e3c42f3e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202647Z:2c2ada43-a00c-4b0b-b3a9-d9a0e3c42f3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:26:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/ipGroups/ps8999?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvaXBHcm91cHMvcHM4OTk5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca4b9cc3-e1ea-4693-941e-9f7a0bd448f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "ef4f6a22-36b7-461d-9c81-32a89329f3d0" + ], + "x-ms-correlation-request-id": [ + "ef4f6a22-36b7-461d-9c81-32a89329f3d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202649Z:ef4f6a22-36b7-461d-9c81-32a89329f3d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:26:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/azureFirewalls/ps9264?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM5MjY0P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "678c16ef-4c1f-4bef-9ec4-fdf4297ab48f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operationResults/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9573a7da-087b-403b-8c20-749552252bb1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "dada9dc9-edfc-4333-950b-f68132161445" + ], + "x-ms-arm-service-request-id": [ + "aa9fe716-a58e-449d-8b31-a7df22a648c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202650Z:dada9dc9-edfc-4333-950b-f68132161445" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:26:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "373ba6cf-683a-468a-9f78-26f79c3706cb" + ], + "x-ms-correlation-request-id": [ + "a5583e0a-8086-408c-9325-4d8448508165" + ], + "x-ms-arm-service-request-id": [ + "87f19010-491d-4eac-aa1f-cd508aae3139" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202700Z:a5583e0a-8086-408c-9325-4d8448508165" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:26: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "77f8419e-fb7b-4eb1-86de-d66622dd12dd" + ], + "x-ms-correlation-request-id": [ + "038738b9-78a6-454a-9986-ccfb206ff2c4" + ], + "x-ms-arm-service-request-id": [ + "b984bb8a-0137-4458-b476-f029760e5c6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202710Z:038738b9-78a6-454a-9986-ccfb206ff2c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:27:10 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5e838112-608f-469f-be14-fb9e8847a630" + ], + "x-ms-correlation-request-id": [ + "6d4a2983-810b-4f62-ae2e-aef2b3f6d19b" + ], + "x-ms-arm-service-request-id": [ + "84678019-cd43-49ee-99bd-b929775fad76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202720Z:6d4a2983-810b-4f62-ae2e-aef2b3f6d19b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:27: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1bb79038-4ec0-4124-bc90-3c3f9119db01" + ], + "x-ms-correlation-request-id": [ + "5c639965-a3c5-4f95-b7ef-23bfe12469c2" + ], + "x-ms-arm-service-request-id": [ + "d34f1b3d-c097-4a0a-8a45-042bf55d294d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202730Z:5c639965-a3c5-4f95-b7ef-23bfe12469c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:27: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9214ba61-6c36-4326-a3d1-dc19b7630a04" + ], + "x-ms-correlation-request-id": [ + "f4199674-8855-41c4-8dab-a8562c965f8b" + ], + "x-ms-arm-service-request-id": [ + "0c4eafb1-d9e7-41d4-ba63-78f9c2e54f6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202741Z:f4199674-8855-41c4-8dab-a8562c965f8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:27: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d1a73d45-2cca-4b77-ac6b-d115901b551f" + ], + "x-ms-correlation-request-id": [ + "8532ce05-e733-477d-96e2-9c7d9b9b1551" + ], + "x-ms-arm-service-request-id": [ + "2d2b6839-5070-4eb8-8659-dd5de20cc4a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202751Z:8532ce05-e733-477d-96e2-9c7d9b9b1551" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:27: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "36278697-8f39-4205-b9fb-1f9260243fa8" + ], + "x-ms-correlation-request-id": [ + "20f648d6-0734-45a3-a509-9a23bfda1680" + ], + "x-ms-arm-service-request-id": [ + "3d24397f-962b-46fa-8b9f-c9a8092cd794" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202801Z:20f648d6-0734-45a3-a509-9a23bfda1680" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:28: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2e724304-e1db-45d2-9072-3ef604e334b3" + ], + "x-ms-correlation-request-id": [ + "94929408-3fb8-45e7-8652-74bd9574afba" + ], + "x-ms-arm-service-request-id": [ + "ce5de050-64de-42ef-bd98-f10be1deb5f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202811Z:94929408-3fb8-45e7-8652-74bd9574afba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:28: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "025bb5bf-0399-4341-b90f-d73d305eaaa0" + ], + "x-ms-correlation-request-id": [ + "0adcd1dc-5b35-4e2b-a5be-0c392c1c1df1" + ], + "x-ms-arm-service-request-id": [ + "294696ec-0abe-46c2-a4bb-df48a2c78be2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202821Z:0adcd1dc-5b35-4e2b-a5be-0c392c1c1df1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:28: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "390b5a6b-e22d-4c03-a69d-bc578f389370" + ], + "x-ms-correlation-request-id": [ + "4091f93e-ef8a-491a-8389-fe6306c8b9c6" + ], + "x-ms-arm-service-request-id": [ + "91be482b-9045-4141-ada1-40325f66f809" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202832Z:4091f93e-ef8a-491a-8389-fe6306c8b9c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:28: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "33d694e5-6e45-4176-888a-e6cca29b4882" + ], + "x-ms-correlation-request-id": [ + "b705d5fc-1af6-4af5-96f7-ee1feb9e42b5" + ], + "x-ms-arm-service-request-id": [ + "4decbe7a-4ec5-4b16-8450-97907cf300a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202842Z:b705d5fc-1af6-4af5-96f7-ee1feb9e42b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:28: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "100a1cb0-7441-4b0b-a76c-0ca34facc34d" + ], + "x-ms-correlation-request-id": [ + "38827cb0-de00-4c47-a555-687fc25fa5c2" + ], + "x-ms-arm-service-request-id": [ + "63106632-ccda-4859-bbb8-b4494f710d60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202852Z:38827cb0-de00-4c47-a555-687fc25fa5c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:28:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "54348be6-3f8c-439a-85d4-72f9341eea69" + ], + "x-ms-correlation-request-id": [ + "0ab46a32-b9d2-4401-b2fb-fe97121b6bf1" + ], + "x-ms-arm-service-request-id": [ + "8b517f1b-1ad4-4879-a0f3-ab7ff464f02f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202902Z:0ab46a32-b9d2-4401-b2fb-fe97121b6bf1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:29: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "061c6e96-7bb4-4fab-a6d9-39ab5f36752a" + ], + "x-ms-correlation-request-id": [ + "b980bbb9-0fdd-4782-af72-89979fa097ab" + ], + "x-ms-arm-service-request-id": [ + "cb678093-0a89-4b31-a790-2cd33ee0e786" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202912Z:b980bbb9-0fdd-4782-af72-89979fa097ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:29: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a5e9a473-b7f4-4242-819a-bf877508507e" + ], + "x-ms-correlation-request-id": [ + "d796c2b6-49b6-4781-a9c9-961148ccb0c3" + ], + "x-ms-arm-service-request-id": [ + "743edcd9-7737-467d-9d6c-c02163909604" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202922Z:d796c2b6-49b6-4781-a9c9-961148ccb0c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:29:22 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cbf0a357-3177-4910-937e-df3491897bff" + ], + "x-ms-correlation-request-id": [ + "ba602898-1e2d-43d3-bd68-5e816877d498" + ], + "x-ms-arm-service-request-id": [ + "3603b9da-991f-4b75-a7f7-83d302a32f2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202932Z:ba602898-1e2d-43d3-bd68-5e816877d498" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:29: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "72b1e1c1-5786-4757-8b3a-4dfb6924fa38" + ], + "x-ms-correlation-request-id": [ + "c31f582d-9225-4b6a-b6fb-8ea1a03471ee" + ], + "x-ms-arm-service-request-id": [ + "8a4ff935-60dc-46b4-8b07-54fea58d5c66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202943Z:c31f582d-9225-4b6a-b6fb-8ea1a03471ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:29: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "14a59877-1a6c-41ee-854d-d4bb7ba7c1ae" + ], + "x-ms-correlation-request-id": [ + "f7d74efa-2bb9-47cd-88c7-041f23143d62" + ], + "x-ms-arm-service-request-id": [ + "dad0e46e-b64b-4e9c-b122-5d3a569a17bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T202953Z:f7d74efa-2bb9-47cd-88c7-041f23143d62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:29: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "94d94640-6d8f-4787-b27f-2bc76272210f" + ], + "x-ms-correlation-request-id": [ + "642eb4bc-229f-45f2-b908-fa0d85d01711" + ], + "x-ms-arm-service-request-id": [ + "0f1fd157-b0ed-4d7d-bd8a-6c1b03107a3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203003Z:642eb4bc-229f-45f2-b908-fa0d85d01711" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:30: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "06544c13-7f7d-4e83-becb-bc841c873f92" + ], + "x-ms-correlation-request-id": [ + "a69ff766-f192-478c-b181-cd59cf710c16" + ], + "x-ms-arm-service-request-id": [ + "217caf81-33c2-4078-96ad-90a3bc519349" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203013Z:a69ff766-f192-478c-b181-cd59cf710c16" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:30:12 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "48c111af-7267-4966-a58a-917bf2f52b31" + ], + "x-ms-correlation-request-id": [ + "f84c81b8-adde-44f1-b949-c17f1c8412d8" + ], + "x-ms-arm-service-request-id": [ + "8dbf7f92-5113-41d5-9345-dc2eb7ee6d83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203023Z:f84c81b8-adde-44f1-b949-c17f1c8412d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:30: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "70bab225-8d3b-4c67-b174-d7ab901cbd12" + ], + "x-ms-correlation-request-id": [ + "ba215f70-6b32-49d2-8ac3-21b0d16f22fc" + ], + "x-ms-arm-service-request-id": [ + "7d9d1011-fafc-4b42-938f-7933fa8e7705" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203033Z:ba215f70-6b32-49d2-8ac3-21b0d16f22fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:30: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "078322b4-73b1-47ea-87d3-5c39eb33a6e6" + ], + "x-ms-correlation-request-id": [ + "713aa416-7dab-40a3-a6ee-5d5c858b3a6f" + ], + "x-ms-arm-service-request-id": [ + "a7c14972-2062-49f8-9f11-0ab8c9636342" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203043Z:713aa416-7dab-40a3-a6ee-5d5c858b3a6f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:30: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "db16146a-eb6d-4a21-ae6f-0463eca97093" + ], + "x-ms-correlation-request-id": [ + "f72978d8-b18e-47a9-9f1f-125794add61f" + ], + "x-ms-arm-service-request-id": [ + "5494407c-9cf9-43f6-b47b-0e7a8c358cb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203054Z:f72978d8-b18e-47a9-9f1f-125794add61f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:30: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "79c1e09c-c8e5-4dfa-b92e-60fa97a2ee57" + ], + "x-ms-correlation-request-id": [ + "03f5ebcd-9357-4155-b27f-64440d7c49c4" + ], + "x-ms-arm-service-request-id": [ + "3b51d10d-e3e4-426f-8e12-de25ce6d5ab6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203104Z:03f5ebcd-9357-4155-b27f-64440d7c49c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:31: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "23bfe702-5ca3-4792-a374-9b7a706ab2a6" + ], + "x-ms-correlation-request-id": [ + "a4b6d41f-368c-4002-aa77-8421d59d1360" + ], + "x-ms-arm-service-request-id": [ + "7e04a044-dc4d-4afe-ba28-7df0f042b867" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203114Z:a4b6d41f-368c-4002-aa77-8421d59d1360" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:31:14 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "15b1fdc0-0501-4003-88ae-e760428c4f33" + ], + "x-ms-correlation-request-id": [ + "d57af27a-0721-42a1-aa87-0eafe9b7c77d" + ], + "x-ms-arm-service-request-id": [ + "bbd166ac-bd2a-4365-a9d2-9d749b679e3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203124Z:d57af27a-0721-42a1-aa87-0eafe9b7c77d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:31: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "53042284-a2e3-44a0-9ea6-a3e01dc523d7" + ], + "x-ms-correlation-request-id": [ + "dbd27be4-4195-4740-8dac-5e9ff867df41" + ], + "x-ms-arm-service-request-id": [ + "b34e15d9-3aee-4dd2-a33c-d1279992d3a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203134Z:dbd27be4-4195-4740-8dac-5e9ff867df41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:31: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "62067933-6581-441c-a593-21e85ff4ebfb" + ], + "x-ms-correlation-request-id": [ + "69807e38-09a9-4637-9436-012ac931abd6" + ], + "x-ms-arm-service-request-id": [ + "c716ff9a-eb70-4c4b-8aaa-f5815f904b6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203145Z:69807e38-09a9-4637-9436-012ac931abd6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:31: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dda16a16-eba3-4317-bb97-5680ec568a3f" + ], + "x-ms-correlation-request-id": [ + "eed85764-394b-40e0-a17c-de081a784ec5" + ], + "x-ms-arm-service-request-id": [ + "67140bd4-f42c-4650-9726-c9d03c74b8b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203155Z:eed85764-394b-40e0-a17c-de081a784ec5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:31: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9f0433f7-78e8-48fb-8148-fe5c86edf8a5" + ], + "x-ms-correlation-request-id": [ + "d4cd83e0-4183-4670-9cfe-c077a5bab7fa" + ], + "x-ms-arm-service-request-id": [ + "90b89c2d-2c5c-4f8a-ba78-5cd4366eab67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203205Z:d4cd83e0-4183-4670-9cfe-c077a5bab7fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:32: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2f728980-675f-41ef-99a1-e24bc95b3510" + ], + "x-ms-correlation-request-id": [ + "c4c2cf91-1cb6-43aa-8157-37a15c610c03" + ], + "x-ms-arm-service-request-id": [ + "b2b676ae-cce0-4e25-b49b-4d5d0d0c9f95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203215Z:c4c2cf91-1cb6-43aa-8157-37a15c610c03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:32:14 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4afe567f-dd47-40bb-9b18-eb8ca20cfefd" + ], + "x-ms-correlation-request-id": [ + "b83a2e3c-3492-4eb1-a7aa-1d6111a6aa28" + ], + "x-ms-arm-service-request-id": [ + "95418cf1-28e9-4909-b39b-e4ea6df7b3b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203225Z:b83a2e3c-3492-4eb1-a7aa-1d6111a6aa28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:32: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2bf29327-707a-46a3-96c0-341704de2c99" + ], + "x-ms-correlation-request-id": [ + "1497f0a4-5b33-4f31-b4dc-7395a89ecaae" + ], + "x-ms-arm-service-request-id": [ + "9672aba0-12c6-40c5-8732-583afdd9ef07" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203235Z:1497f0a4-5b33-4f31-b4dc-7395a89ecaae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:32: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "83b86f18-bc72-455c-a551-4ad6777b630c" + ], + "x-ms-correlation-request-id": [ + "03b53ae3-b568-4ce0-977a-06108a90b064" + ], + "x-ms-arm-service-request-id": [ + "6e950da6-ee31-4f71-8e84-b34df4ebfd5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203245Z:03b53ae3-b568-4ce0-977a-06108a90b064" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:32: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a1799723-19b5-42f3-ba08-83bcf4dab693" + ], + "x-ms-correlation-request-id": [ + "1a9d31cd-3925-4ce9-a651-1cb5d223ae8e" + ], + "x-ms-arm-service-request-id": [ + "b64a2a52-b19b-4dfc-99da-239b0cb098e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203255Z:1a9d31cd-3925-4ce9-a651-1cb5d223ae8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:32: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "32daca8c-8c38-48fe-bcef-48e10522f1f9" + ], + "x-ms-correlation-request-id": [ + "07d9ecef-5e5e-445c-8d1d-cd4acd23ac18" + ], + "x-ms-arm-service-request-id": [ + "00a10e92-5521-40b8-a562-8861155440be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203306Z:07d9ecef-5e5e-445c-8d1d-cd4acd23ac18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:33: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5efe61b3-9ddc-4c6c-9dfc-80434382babb" + ], + "x-ms-correlation-request-id": [ + "34cbddd7-9b25-4ca3-b090-6c6c23836482" + ], + "x-ms-arm-service-request-id": [ + "cbed9e57-21c8-402b-82b2-3562b61b0211" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203316Z:34cbddd7-9b25-4ca3-b090-6c6c23836482" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:33: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7652d5c8-6af1-41ca-9cf7-7e7b7361d720" + ], + "x-ms-correlation-request-id": [ + "7fe0eaca-c914-45e2-9b78-75556ae50c54" + ], + "x-ms-arm-service-request-id": [ + "ccbc32a5-b383-42d5-a266-95cc040c350b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203326Z:7fe0eaca-c914-45e2-9b78-75556ae50c54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:33: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "df30fe43-23de-4d7b-b242-ed0d1c36a997" + ], + "x-ms-correlation-request-id": [ + "47971309-9678-44c3-9881-507bce2872e9" + ], + "x-ms-arm-service-request-id": [ + "abddd302-3793-4fbb-b750-5f610ba517f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203336Z:47971309-9678-44c3-9881-507bce2872e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:33: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5fdb1392-f7cc-4da9-befa-503222d7708e" + ], + "x-ms-correlation-request-id": [ + "53358be6-8d22-46b5-b0db-f8d8135f3cdb" + ], + "x-ms-arm-service-request-id": [ + "8010f7fe-8157-4aff-8f5a-14ff6fda6527" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203346Z:53358be6-8d22-46b5-b0db-f8d8135f3cdb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:33: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/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cf0458da-0ed5-4699-95d0-473afaf11910" + ], + "x-ms-correlation-request-id": [ + "8b8830b9-cf9f-4ceb-8dce-ff5fe1274dba" + ], + "x-ms-arm-service-request-id": [ + "b697fa39-b137-4b00-a27d-761ddb89b893" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203356Z:8b8830b9-cf9f-4ceb-8dce-ff5fe1274dba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:33:56 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operationResults/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uUmVzdWx0cy85NTczYTdkYS0wODdiLTQwM2ItOGMyMC03NDk1NTIyNTJiYjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operationResults/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01" + ], + "x-ms-request-id": [ + "9573a7da-087b-403b-8c20-749552252bb1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/9573a7da-087b-403b-8c20-749552252bb1?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "dada9dc9-edfc-4333-950b-f68132161445" + ], + "x-ms-arm-service-request-id": [ + "aa9fe716-a58e-449d-8b31-a7df22a648c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203356Z:2bf94181-e449-461c-8048-7c3fdd10a082" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:33:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourceGroups/ps4336/providers/Microsoft.Network/virtualNetworks/ps4707?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlR3JvdXBzL3BzNDMzNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNDcwNz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5f43981-5406-426e-828c-3fb337f1a7a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operationResults/263036fe-38ed-4b7f-9543-735703c6a851?api-version=2019-09-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "263036fe-38ed-4b7f-9543-735703c6a851" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/263036fe-38ed-4b7f-9543-735703c6a851?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "424ee29c-8a05-4528-8817-e1ff9d63cbe4" + ], + "x-ms-arm-service-request-id": [ + "f2f735a4-cc19-4c59-b91f-e13d554b1b99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203357Z:424ee29c-8a05-4528-8817-e1ff9d63cbe4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:33:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/263036fe-38ed-4b7f-9543-735703c6a851?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy8yNjMwMzZmZS0zOGVkLTRiN2YtOTU0My03MzU3MDNjNmE4NTE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cc74c53d-ec5b-426d-ae3d-1bf957daee59" + ], + "x-ms-correlation-request-id": [ + "eaa7cbde-c62c-43f3-bbca-84500dcc4266" + ], + "x-ms-arm-service-request-id": [ + "81d8e8cf-75c7-434f-b929-de71a17f2b50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203407Z:eaa7cbde-c62c-43f3-bbca-84500dcc4266" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:34:07 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operationResults/263036fe-38ed-4b7f-9543-735703c6a851?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uUmVzdWx0cy8yNjMwMzZmZS0zOGVkLTRiN2YtOTU0My03MzU3MDNjNmE4NTE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operationResults/263036fe-38ed-4b7f-9543-735703c6a851?api-version=2019-09-01" + ], + "x-ms-request-id": [ + "263036fe-38ed-4b7f-9543-735703c6a851" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/providers/Microsoft.Network/locations/southcentralus/operations/263036fe-38ed-4b7f-9543-735703c6a851?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "424ee29c-8a05-4528-8817-e1ff9d63cbe4" + ], + "x-ms-arm-service-request-id": [ + "f2f735a4-cc19-4c59-b91f-e13d554b1b99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203407Z:524fd784-0bb0-4299-9366-ca080640f199" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:34:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/resourcegroups/ps4336?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL3Jlc291cmNlZ3JvdXBzL3BzNDMzNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf1c0541-ebe8-4ad5-8240-0b8699182b73" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "e046b3c4-8928-474e-80cb-8ba1ea05575d" + ], + "x-ms-correlation-request-id": [ + "e046b3c4-8928-474e-80cb-8ba1ea05575d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203409Z:e046b3c4-8928-474e-80cb-8ba1ea05575d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:34:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5029e075-e0f4-495f-bb47-a9d76881ac08" + ], + "x-ms-correlation-request-id": [ + "5029e075-e0f4-495f-bb47-a9d76881ac08" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203424Z:5029e075-e0f4-495f-bb47-a9d76881ac08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:34:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "756cc0fe-4b53-4da5-bc83-4e3c10611f8e" + ], + "x-ms-correlation-request-id": [ + "756cc0fe-4b53-4da5-bc83-4e3c10611f8e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203439Z:756cc0fe-4b53-4da5-bc83-4e3c10611f8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:34:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "4e4c41c2-edc1-4f12-9c80-f1b19c8c9796" + ], + "x-ms-correlation-request-id": [ + "4e4c41c2-edc1-4f12-9c80-f1b19c8c9796" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203455Z:4e4c41c2-edc1-4f12-9c80-f1b19c8c9796" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:34:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "4fa96659-a385-4074-915d-ddd905e96915" + ], + "x-ms-correlation-request-id": [ + "4fa96659-a385-4074-915d-ddd905e96915" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203510Z:4fa96659-a385-4074-915d-ddd905e96915" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:35:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "2c239f2c-4b2f-45d7-b62e-cd1f336062ef" + ], + "x-ms-correlation-request-id": [ + "2c239f2c-4b2f-45d7-b62e-cd1f336062ef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203525Z:2c239f2c-4b2f-45d7-b62e-cd1f336062ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:35:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "20687ed6-539d-4ae0-8ccb-e73432965314" + ], + "x-ms-correlation-request-id": [ + "20687ed6-539d-4ae0-8ccb-e73432965314" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203540Z:20687ed6-539d-4ae0-8ccb-e73432965314" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:35:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "4f591afe-dd1f-46b5-aa85-141def7bf28e" + ], + "x-ms-correlation-request-id": [ + "4f591afe-dd1f-46b5-aa85-141def7bf28e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203555Z:4f591afe-dd1f-46b5-aa85-141def7bf28e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:35:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "6b0ffc72-0c35-4c63-b32f-e2071515d651" + ], + "x-ms-correlation-request-id": [ + "6b0ffc72-0c35-4c63-b32f-e2071515d651" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203610Z:6b0ffc72-0c35-4c63-b32f-e2071515d651" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:36:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "139a77ac-c6bd-4d8a-baee-5c288a2a4a65" + ], + "x-ms-correlation-request-id": [ + "139a77ac-c6bd-4d8a-baee-5c288a2a4a65" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203625Z:139a77ac-c6bd-4d8a-baee-5c288a2a4a65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:36:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "48413f6f-3449-4bf2-9710-f430d46777a6" + ], + "x-ms-correlation-request-id": [ + "48413f6f-3449-4bf2-9710-f430d46777a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203641Z:48413f6f-3449-4bf2-9710-f430d46777a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:36:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "2b729db3-f8d5-41bf-957b-1142b86d3bfc" + ], + "x-ms-correlation-request-id": [ + "2b729db3-f8d5-41bf-957b-1142b86d3bfc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203656Z:2b729db3-f8d5-41bf-957b-1142b86d3bfc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:36:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "ed88f10e-2610-46df-8fb4-7322b58ef532" + ], + "x-ms-correlation-request-id": [ + "ed88f10e-2610-46df-8fb4-7322b58ef532" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203711Z:ed88f10e-2610-46df-8fb4-7322b58ef532" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:37:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "0aacf1d4-b2b1-4073-9937-f9390b4d923f" + ], + "x-ms-correlation-request-id": [ + "0aacf1d4-b2b1-4073-9937-f9390b4d923f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203726Z:0aacf1d4-b2b1-4073-9937-f9390b4d923f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:37:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "ef15f56d-457f-4404-9fc4-c7472898d9e9" + ], + "x-ms-correlation-request-id": [ + "ef15f56d-457f-4404-9fc4-c7472898d9e9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203741Z:ef15f56d-457f-4404-9fc4-c7472898d9e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:37:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "f5f626c8-2b5e-44dd-b27d-b1abcc3a2fee" + ], + "x-ms-correlation-request-id": [ + "f5f626c8-2b5e-44dd-b27d-b1abcc3a2fee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203756Z:f5f626c8-2b5e-44dd-b27d-b1abcc3a2fee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:37:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fd51bb56-5d10-40cb-8d0c-e045d0046f4b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMzYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmQ1MWJiNTYtNWQxMC00MGNiLThkMGMtZTA0NWQwMDQ2ZjRiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek16WXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "2023f91a-bcb7-4922-8781-e7eb1a104687" + ], + "x-ms-correlation-request-id": [ + "2023f91a-bcb7-4922-8781-e7eb1a104687" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191203T203756Z:2023f91a-bcb7-4922-8781-e7eb1a104687" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 03 Dec 2019 20:37:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-AzureFirewallIpGroup": [ + "ps4336", + "ps2155", + "ps8999", + "ps9264", + "ps4707", + "ps5083" + ] + }, + "Variables": { + "SubscriptionId": "fd51bb56-5d10-40cb-8d0c-e045d0046f4b" + } +} \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallIpGroupTests/TestListAzureFirewallIpGroup.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallIpGroupTests/TestListAzureFirewallIpGroup.json new file mode 100644 index 000000000000..46baa6fcabd4 --- /dev/null +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallIpGroupTests/TestListAzureFirewallIpGroup.json @@ -0,0 +1,547 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e78fb4ae-26f8-4d86-befd-00ec52b12494" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "dae63cc8-21fa-413d-85fa-22135c9e1a7b" + ], + "x-ms-correlation-request-id": [ + "dae63cc8-21fa-413d-85fa-22135c9e1a7b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191122T005851Z:dae63cc8-21fa-413d-85fa-22135c9e1a7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Nov 2019 00:58:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "64755" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n }\r\n ],\r\n \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-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-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-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-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-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-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"UAE Central\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-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-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-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-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-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-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/ps6951?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlZ3JvdXBzL3BzNjk1MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"southcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d93f89c9-f61a-4fae-a955-94ca1890c90a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "077b3915-30dc-42b4-a816-52785361576a" + ], + "x-ms-correlation-request-id": [ + "077b3915-30dc-42b4-a816-52785361576a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191122T005853Z:077b3915-30dc-42b4-a816-52785361576a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Nov 2019 00:58:52 GMT" + ], + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps6951\",\r\n \"name\": \"ps6951\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps6951/providers/Microsoft.Network/ipGroups/ps2495?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNjk1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvaXBHcm91cHMvcHMyNDk1P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21af192-f79b-4cfd-b966-b438d1f12111" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "02668b76-369c-4444-ae03-30973013a988" + ], + "x-ms-correlation-request-id": [ + "02668b76-369c-4444-ae03-30973013a988" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191122T005853Z:02668b76-369c-4444-ae03-30973013a988" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Nov 2019 00:58:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "143" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/ipGroups/ps2495' under resource group 'ps6951' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps6951/providers/Microsoft.Network/ipGroups/ps2495?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNjk1MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvaXBHcm91cHMvcHMyNDk1P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipAddresses\": [\r\n \"10.0.0.0/24\",\r\n \"11.9.0.0/24\"\r\n ]\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6f51363-d8d6-47a3-8cd8-0c639a4693c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "130" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f65d7571-a99e-41e9-a614-d7a7080a73b9" + ], + "x-ms-correlation-request-id": [ + "f65d7571-a99e-41e9-a614-d7a7080a73b9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191122T005855Z:f65d7571-a99e-41e9-a614-d7a7080a73b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Nov 2019 00:58:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "416" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"LocationNotAvailableForResourceType\",\r\n \"message\": \"The provided location 'eastus2euap' is not available for resource type 'Microsoft.Network/ipGroups'. List of available regions for the resource type is 'westus,eastus,northeurope,westeurope,southcentralus,australiaeast,australiacentral,australiasoutheast,uksouth,eastus2,westus2,northcentralus,canadacentral,francecentral,westcentralus,centralus'.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/ps6951?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlZ3JvdXBzL3BzNjk1MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8fc1997-be6b-4dfa-92a7-afdfaf459048" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5NTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "07e304d7-bbe5-414b-8820-ddfd92b42866" + ], + "x-ms-correlation-request-id": [ + "07e304d7-bbe5-414b-8820-ddfd92b42866" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191122T005857Z:07e304d7-bbe5-414b-8820-ddfd92b42866" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Nov 2019 00:58:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5NTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU5URXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5NTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5009b842-d8ce-4cc8-af90-ea61e33f89f0" + ], + "x-ms-correlation-request-id": [ + "5009b842-d8ce-4cc8-af90-ea61e33f89f0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191122T005912Z:5009b842-d8ce-4cc8-af90-ea61e33f89f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Nov 2019 00:59:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5NTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU5URXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5NTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "5156a810-5700-41a1-aa97-8169b6c5a372" + ], + "x-ms-correlation-request-id": [ + "5156a810-5700-41a1-aa97-8169b6c5a372" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191122T005927Z:5156a810-5700-41a1-aa97-8169b6c5a372" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Nov 2019 00:59:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5NTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU5URXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "e3d58d3a-ae69-459f-ae51-aa943120cc82" + ], + "x-ms-correlation-request-id": [ + "e3d58d3a-ae69-459f-ae51-aa943120cc82" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191122T005942Z:e3d58d3a-ae69-459f-ae51-aa943120cc82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Nov 2019 00:59:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5NTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU5URXRVMDlWVkVoRFJVNVVVa0ZNVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9ZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "759cb35b-d2f1-4c4d-8a45-7b078eb41ddb" + ], + "x-ms-correlation-request-id": [ + "759cb35b-d2f1-4c4d-8a45-7b078eb41ddb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20191122T005943Z:759cb35b-d2f1-4c4d-8a45-7b078eb41ddb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Nov 2019 00:59:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-AzureFirewallIpGroup": [ + "ps6951", + "ps2495", + "ps2850", + "ps5721", + "ps7281" + ] + }, + "Variables": { + "SubscriptionId": "aeb5b02a-0f18-45a4-86d6-81808115cacf" + } +} \ No newline at end of file diff --git a/src/Network/Network/AzureFirewall/ApplicationRule/NewAzureFirewallApplicationRuleCommand.cs b/src/Network/Network/AzureFirewall/ApplicationRule/NewAzureFirewallApplicationRuleCommand.cs index faf973bce7ce..ae786e581441 100644 --- a/src/Network/Network/AzureFirewall/ApplicationRule/NewAzureFirewallApplicationRuleCommand.cs +++ b/src/Network/Network/AzureFirewall/ApplicationRule/NewAzureFirewallApplicationRuleCommand.cs @@ -41,11 +41,15 @@ public class NewAzureFirewallApplicationRuleCommand : AzureFirewallBaseCmdlet public string Description { get; set; } [Parameter( - Mandatory = false, - HelpMessage = "The source addresses of the rule")] - [ValidateNotNullOrEmpty] + Mandatory = false, + HelpMessage = "The source addresses of the rule")] public string[] SourceAddress { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The source ipgroup of the rule")] + public string[] SourceIpGroup { get; set; } + [Parameter( Mandatory = true, ParameterSetName = AzureFirewallApplicationRuleParameterSets.TargetFqdn, @@ -84,6 +88,7 @@ public override void Execute() Name = this.Name, Description = this.Description, SourceAddresses = this.SourceAddress?.ToList(), + SourceIpGroups = this.SourceIpGroup?.ToList(), Protocols = protocolsAsWeExpectThem, TargetFqdns = this.TargetFqdn?.ToList(), FqdnTags = this.FqdnTag?.ToList() diff --git a/src/Network/Network/AzureFirewall/NatRule/NewAzureFirewallNatRuleCommand.cs b/src/Network/Network/AzureFirewall/NatRule/NewAzureFirewallNatRuleCommand.cs index 62604e5600bf..2f6b3850258d 100644 --- a/src/Network/Network/AzureFirewall/NatRule/NewAzureFirewallNatRuleCommand.cs +++ b/src/Network/Network/AzureFirewall/NatRule/NewAzureFirewallNatRuleCommand.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Network { [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FirewallNatRule", SupportsShouldProcess = true), OutputType(typeof(PSAzureFirewallNatRule))] - public class NewAzureFirewallNatRuleCommand : NetworkBaseCmdlet + public class NewAzureFirewallNatRuleCommand : AzureFirewallBaseCmdlet { [Parameter( Mandatory = true, @@ -38,11 +38,15 @@ public class NewAzureFirewallNatRuleCommand : NetworkBaseCmdlet public string Description { get; set; } [Parameter( - Mandatory = true, + Mandatory = false, HelpMessage = "The source addresses of the rule")] - [ValidateNotNullOrEmpty] public string[] SourceAddress { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The source ipgroup of the rule")] + public string[] SourceIpGroup { get; set; } + [Parameter( Mandatory = true, HelpMessage = "The destination addresses of the rule")] @@ -90,6 +94,12 @@ public override void Execute() // Add some validation based on the type of RuleCollection (SNAT will be supported later) // if (MNM.AzureFirewallNatRCActionType.Dnat.Equals(ActionType)) { + // One of SourceAddress or SourceIpGroup must be present + if ((SourceAddress == null) && (SourceIpGroup == null)) + { + throw new ArgumentException("Either SourceAddress or SourceIpGroup is required."); + } + if (DestinationAddress.Length != 1) { throw new ArgumentException("Only one destination address is accepted.", nameof(DestinationAddress)); @@ -126,19 +136,20 @@ public override void Execute() ValidateIsSinglePortNotRange(TranslatedPort); } - var networkRule = new PSAzureFirewallNatRule + var natRule = new PSAzureFirewallNatRule { Name = this.Name, Description = this.Description, Protocols = this.Protocol?.ToList(), SourceAddresses = this.SourceAddress?.ToList(), + SourceIpGroups = this.SourceIpGroup?.ToList(), DestinationAddresses = this.DestinationAddress?.ToList(), DestinationPorts = this.DestinationPort?.ToList(), TranslatedAddress = this.TranslatedAddress, TranslatedFqdn = this.TranslatedFqdn, TranslatedPort = this.TranslatedPort }; - WriteObject(networkRule); + WriteObject(natRule); } private void ValidateIsSingleIpNotRange(string ipStr) diff --git a/src/Network/Network/AzureFirewall/NetworkRule/NewAzureFirewallNetworkRuleCommand.cs b/src/Network/Network/AzureFirewall/NetworkRule/NewAzureFirewallNetworkRuleCommand.cs index 9cf2b734a4ce..d59ebe8d53b7 100644 --- a/src/Network/Network/AzureFirewall/NetworkRule/NewAzureFirewallNetworkRuleCommand.cs +++ b/src/Network/Network/AzureFirewall/NetworkRule/NewAzureFirewallNetworkRuleCommand.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Network { [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FirewallNetworkRule", SupportsShouldProcess = true), OutputType(typeof(PSAzureFirewallNetworkRule))] - public class NewAzureFirewallNetworkRuleCommand : NetworkBaseCmdlet + public class NewAzureFirewallNetworkRuleCommand : AzureFirewallBaseCmdlet { [Parameter( Mandatory = true, @@ -38,17 +38,26 @@ public class NewAzureFirewallNetworkRuleCommand : NetworkBaseCmdlet public string Description { get; set; } [Parameter( - Mandatory = true, + Mandatory = false, HelpMessage = "The source addresses of the rule")] - [ValidateNotNullOrEmpty] public string[] SourceAddress { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The source ipgroup of the rule")] + public string[] SourceIpGroup { get; set; } + [Parameter( Mandatory = false, HelpMessage = "The destination addresses of the rule")] - [ValidateNotNullOrEmpty] public string[] DestinationAddress { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The destination ipgroup of the rule")] + public string[] DestinationIpGroup { get; set; } + [Parameter( Mandatory = false, HelpMessage = "The destination FQDN of the rule")] @@ -76,6 +85,12 @@ public override void Execute() { base.Execute(); + // One of SourceAddress or SourceIpGroup must be present + if ((SourceAddress == null) && (SourceIpGroup == null)) + { + throw new ArgumentException("Either SourceAddress or SourceIpGroup is required."); + } + if (DestinationFqdn != null) { foreach (string fqdn in DestinationFqdn) @@ -87,13 +102,13 @@ public override void Execute() // Only one of DestinationAddress or DestinationFqdns is allowed if ((DestinationAddress != null) && (DestinationFqdn != null)) { - throw new ArgumentException("Both DestinationAddress and DestinationFqdns not allowed"); + throw new ArgumentException("Both DestinationAddress and DestinationFqdns not allowed."); } // One of DestinationAddress or DestinationFqdns must be present - if ((DestinationAddress == null) && (DestinationFqdn == null)) + if ((DestinationAddress == null) && (DestinationFqdn == null) && (DestinationIpGroup == null)) { - throw new ArgumentException("Either DestinationAddress or DestinationFqdns is required"); + throw new ArgumentException("DestinationAddress,DestinationIpGroup or DestinationFqdns is required."); } var networkRule = new PSAzureFirewallNetworkRule @@ -102,7 +117,9 @@ public override void Execute() Description = this.Description, Protocols = this.Protocol?.ToList(), SourceAddresses = this.SourceAddress?.ToList(), + SourceIpGroups = this.SourceIpGroup?.ToList(), DestinationAddresses = this.DestinationAddress?.ToList(), + DestinationIpGroups = this.DestinationIpGroup?.ToList(), DestinationFqdns = this.DestinationFqdn?.ToList(), DestinationPorts = this.DestinationPort?.ToList() }; diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 8b44d2ab0cb4..18fea9b747bb 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -20,6 +20,7 @@ ## Upcoming Release * Update references in .psd1 to use relative path +* Support for IpGroups in AzureFirewall Application,Nat & Network Rules. ## Version 2.1.0 * Change `Start-AzVirtualNetworkGatewayConnectionPacketCapture.md` and `Start-AzVirtualnetworkGatewayPacketCapture.md` FilterData option examples. diff --git a/src/Network/Network/IpGroup/GetIpGroupCommand.cs b/src/Network/Network/IpGroup/GetIpGroupCommand.cs index 83952d24eb0b..bf14a43372a9 100644 --- a/src/Network/Network/IpGroup/GetIpGroupCommand.cs +++ b/src/Network/Network/IpGroup/GetIpGroupCommand.cs @@ -29,7 +29,7 @@ public class GetIpGroupsCommand : IpGroupBaseCmdlet { [Parameter( ParameterSetName = IpGroupParameterSetNames.ByName, - Mandatory = true, + Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource group name.")] [ValidateNotNullOrEmpty] @@ -59,10 +59,6 @@ public class GetIpGroupsCommand : IpGroupBaseCmdlet public override void ExecuteCmdlet() { - if (!this.IsIpGroupsPresent(this.ResourceGroupName, this.Name)) - { - throw new System.ArgumentException(string.Format(Microsoft.Azure.Commands.Network.Properties.Resources.ResourceNotFound, this.Name)); - } base.ExecuteCmdlet(); @@ -70,7 +66,7 @@ public override void ExecuteCmdlet() { var resourceInfo = new ResourceIdentifier(ResourceId); ResourceGroupName = resourceInfo.ResourceGroupName; - Name = resourceInfo.ResourceName; + Name = resourceInfo.ResourceName; } if (ShouldGetByName(ResourceGroupName, Name)) diff --git a/src/Network/Network/Models/AzureFirewall/PSAzureFirewallApplicationRule.cs b/src/Network/Network/Models/AzureFirewall/PSAzureFirewallApplicationRule.cs index e1dda3db00f1..5461b09e315b 100644 --- a/src/Network/Network/Models/AzureFirewall/PSAzureFirewallApplicationRule.cs +++ b/src/Network/Network/Models/AzureFirewall/PSAzureFirewallApplicationRule.cs @@ -38,6 +38,9 @@ public class PSAzureFirewallApplicationRule [JsonProperty(Order = 6)] public List Protocols { get; set; } + [JsonProperty(Order = 7)] + public List SourceIpGroups { get; set; } + [JsonIgnore] public string ProtocolsText { @@ -50,6 +53,12 @@ public string SourceAddressesText get { return JsonConvert.SerializeObject(SourceAddresses, Formatting.Indented); } } + [JsonIgnore] + public string SourceIpGroupsText + { + get { return JsonConvert.SerializeObject(SourceIpGroups, Formatting.Indented); } + } + [JsonIgnore] public string TargetFqdnsText { diff --git a/src/Network/Network/Models/AzureFirewall/PSAzureFirewallNatRule.cs b/src/Network/Network/Models/AzureFirewall/PSAzureFirewallNatRule.cs index 51fafe1dd0b9..cb3d9a324336 100644 --- a/src/Network/Network/Models/AzureFirewall/PSAzureFirewallNatRule.cs +++ b/src/Network/Network/Models/AzureFirewall/PSAzureFirewallNatRule.cs @@ -28,6 +28,8 @@ public class PSAzureFirewallNatRule public List SourceAddresses { get; set; } + public List SourceIpGroups { get; set; } + public List DestinationAddresses { get; set; } public List DestinationPorts { get; set; } @@ -50,6 +52,12 @@ public string SourceAddressesText get { return JsonConvert.SerializeObject(SourceAddresses, Formatting.Indented); } } + [JsonIgnore] + public string SourceIpGroupsText + { + get { return JsonConvert.SerializeObject(SourceIpGroups, Formatting.Indented); } + } + [JsonIgnore] public string DestinationAddressesText { diff --git a/src/Network/Network/Models/AzureFirewall/PSAzureFirewallNetworkRule.cs b/src/Network/Network/Models/AzureFirewall/PSAzureFirewallNetworkRule.cs index 4ef0041e8c2f..3518829a0fe6 100644 --- a/src/Network/Network/Models/AzureFirewall/PSAzureFirewallNetworkRule.cs +++ b/src/Network/Network/Models/AzureFirewall/PSAzureFirewallNetworkRule.cs @@ -30,6 +30,10 @@ public class PSAzureFirewallNetworkRule public List DestinationAddresses { get; set; } + public List SourceIpGroups { get; set; } + + public List DestinationIpGroups { get; set; } + public List DestinationFqdns { get; set; } public List DestinationPorts { get; set; } @@ -46,12 +50,24 @@ public string SourceAddressesText get { return JsonConvert.SerializeObject(SourceAddresses, Formatting.Indented); } } + [JsonIgnore] + public string SourceIpGroupsText + { + get { return JsonConvert.SerializeObject(SourceIpGroups, Formatting.Indented); } + } + [JsonIgnore] public string DestinationAddressesText { get { return JsonConvert.SerializeObject(DestinationAddresses, Formatting.Indented); } } + [JsonIgnore] + public string DestinationIpGroupsText + { + get { return JsonConvert.SerializeObject(DestinationIpGroups, Formatting.Indented); } + } + [JsonIgnore] public string DestinationFqdnsText { diff --git a/src/Network/Network/Network.format.ps1xml b/src/Network/Network/Network.format.ps1xml index 142fa7e751bf..c2ed916947d9 100644 --- a/src/Network/Network/Network.format.ps1xml +++ b/src/Network/Network/Network.format.ps1xml @@ -3408,6 +3408,10 @@ SourceAddressesText + + + SourceIpGroupsText + TargetFqdnsText @@ -3480,6 +3484,10 @@ SourceAddressesText + + + SourceIpGroupsText + DestinationAddressesText @@ -3552,10 +3560,18 @@ SourceAddressesText + + + SourceIpGroupsText + DestinationAddressesText + + + DestinationIpGroupsText + DestinationPortsText diff --git a/src/Network/Network/help/New-AzFirewallApplicationRule.md b/src/Network/Network/help/New-AzFirewallApplicationRule.md index c0d727327486..ed30ec622cfc 100644 --- a/src/Network/Network/help/New-AzFirewallApplicationRule.md +++ b/src/Network/Network/help/New-AzFirewallApplicationRule.md @@ -16,14 +16,15 @@ Creates a Firewall Application Rule. ### TargetFqdn (Default) ``` New-AzFirewallApplicationRule -Name [-Description ] [-SourceAddress ] - -TargetFqdn -Protocol [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-SourceIpGroup ] -TargetFqdn -Protocol + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### FqdnTag ``` New-AzFirewallApplicationRule -Name [-Description ] [-SourceAddress ] - -FqdnTag [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-SourceIpGroup ] -FqdnTag [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION @@ -139,6 +140,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SourceIpGroup +The source ipgroup of the rule + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -TargetFqdn Specifies a list of domain names filtered by this rule. The asterisk character, '*', is accepted only as the first character of an FQDN in the list. When used, the asterisk matches any number of characters. (e.g. '*msn.com' will match msn.com and all its subdomains) diff --git a/src/Network/Network/help/New-AzFirewallNatRule.md b/src/Network/Network/help/New-AzFirewallNatRule.md index 8354f1f2388e..6f23573ae9a4 100644 --- a/src/Network/Network/help/New-AzFirewallNatRule.md +++ b/src/Network/Network/help/New-AzFirewallNatRule.md @@ -14,9 +14,10 @@ Creates a Firewall NAT Rule. ## SYNTAX ``` -New-AzFirewallNatRule -Name [-Description ] -SourceAddress - -DestinationAddress -DestinationPort -Protocol -TranslatedAddress - -TranslatedPort [-DefaultProfile ] [-WhatIf] [-Confirm] [] +New-AzFirewallNatRule -Name [-Description ] [-SourceAddress ] + [-SourceIpGroup ] -DestinationAddress -DestinationPort -Protocol + [-TranslatedAddress ] [-TranslatedFqdn ] -TranslatedPort + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -64,7 +65,7 @@ Accept wildcard characters: False ``` ### -DestinationAddress -The destination addresses of the rule. +The destination addresses of the rule ```yaml Type: System.String[] @@ -134,7 +135,22 @@ Type: System.String[] Parameter Sets: (All) Aliases: -Required: True +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SourceIpGroup +The source ipgroup of the rule + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False Position: Named Default value: None Accept pipeline input: False @@ -149,7 +165,22 @@ Type: System.String Parameter Sets: (All) Aliases: -Required: True +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TranslatedFqdn +The translated FQDN for this NAT rule + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False Position: Named Default value: None Accept pipeline input: False diff --git a/src/Network/Network/help/New-AzFirewallNetworkRule.md b/src/Network/Network/help/New-AzFirewallNetworkRule.md index 6ef7b3227379..5c237d0286cf 100644 --- a/src/Network/Network/help/New-AzFirewallNetworkRule.md +++ b/src/Network/Network/help/New-AzFirewallNetworkRule.md @@ -15,7 +15,8 @@ Creates a Firewall Network Rule. ``` New-AzFirewallNetworkRule -Name [-Description ] -SourceAddress - -DestinationAddress -DestinationPort -Protocol + [-SourceIpGroup ] [-DestinationAddress ] [-DestinationIpGroup ] + [-DestinationFqdn ] -DestinationPort -Protocol [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -85,7 +86,37 @@ Type: System.String[] Parameter Sets: (All) Aliases: -Required: True +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DestinationFqdn +The destination FQDN of the rule + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DestinationIpGroup +The destination ipgroup of the rule + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False Position: Named Default value: None Accept pipeline input: False @@ -153,6 +184,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SourceIpGroup +The source ipgroup of the rule + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet.