diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs index 7cdd5fddb934..10a6cd559796 100644 --- a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs +++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.cs @@ -88,6 +88,13 @@ public void TestAzureFirewallCRUDwithManagementIpConfig() { TestRunner.RunTestScript("Test-AzureFirewallCRUDwithManagementIpConfig"); } - + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, NrpTeamAlias.azurefirewall)] + public void TestAzureFirewallWithDNSProxy() + { + TestRunner.RunTestScript("Test-AzureFirewallWithDNSProxy"); + } } } diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 index ad839ea043cf..c4a4fd0c2c6a 100644 --- a/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallTests.ps1 @@ -132,7 +132,7 @@ function Test-AzureFirewallCRUD { $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 + $azureFirewall = New-AzFirewall -Name $azureFirewallName -ResourceGroupName $rgname -Location $location -VirtualNetworkName $vnetName -PublicIpName $publicIpName -DnsProxyNotRequiredForNetworkRule # Get AzureFirewall $getAzureFirewall = Get-AzFirewall -name $azureFirewallName -ResourceGroupName $rgname @@ -1360,3 +1360,113 @@ function Test-AzureFirewallPrivateRangeCRUD { Clean-ResourceGroup $rgname } } + +<# +.SYNOPSIS +Tests AzureFirewall DNS Proxy +#> +function Test-AzureFirewallWithDNSProxy { + # Setup + $rgname = Get-ResourceGroupName + $azureFirewallName = Get-ResourceName + $resourceTypeParent = "Microsoft.Network/AzureFirewalls" + $location = Get-ProviderLocation $resourceTypeParent "eastus2euap" + + $vnetName = Get-ResourceName + $subnetName = "AzureFirewallSubnet" + $publicIpName = Get-ResourceName + $dnsServers = @("10.10.10.1", "20.20.20.2") + + # AzureFirewallNetworkRuleCollection + $networkRcName = "networkRc" + $networkRcPriority = 200 + $networkRcActionType = "Deny" + + # AzureFirewallNetworkRule 1 + $networkRule1Name = "networkRule" + $networkRule1Desc = "desc1" + $networkRule1SourceAddress1 = "10.0.0.0" + $networkRule1SourceAddress2 = "111.1.0.0/24" + $networkRule1DestinationAddress1 = "*" + $networkRule1Protocol1 = "UDP" + $networkRule1Protocol2 = "TCP" + $networkRule1Protocol3 = "ICMP" + $networkRule1DestinationPort1 = "90" + + # AzureFirewallNetworkRule 2 + $networkRule2Name = "networkRule2" + $networkRule2Desc = "desc2" + $networkRule2SourceAddress1 = "10.0.0.0" + $networkRule2SourceAddress2 = "111.1.0.0/24" + $networkRule2DestinationFqdn1 = "www.bing.com" + $networkRule2Protocol1 = "UDP" + $networkRule2Protocol2 = "TCP" + $networkRule2Protocol3 = "ICMP" + $networkRule2DestinationPort1 = "80" + + try { + # Create the resource group + $resourceGroup = New-AzResourceGroup -Name $rgname -Location $location -Tags @{ testtag = "testval" } + + # Create the Virtual Network + $subnet = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.0.0/24 + $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -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 Network Rule + $networkRule = New-AzFirewallNetworkRule -Name $networkRule1Name -Description $networkRule1Desc -Protocol $networkRule1Protocol1, $networkRule1Protocol2 -SourceAddress $networkRule1SourceAddress1, $networkRule1SourceAddress2 -DestinationAddress $networkRule1DestinationAddress1 -DestinationPort $networkRule1DestinationPort1 + $networkRule.AddProtocol($networkRule1Protocol3) + + # Test handling of incorrect values + Assert-ThrowsContains { $networkRule.AddProtocol() } "Cannot find an overload" + Assert-ThrowsContains { $networkRule.AddProtocol($null) } "A protocol must be provided" + Assert-ThrowsContains { $networkRule.AddProtocol("ABCD") } "Invalid protocol" + + # Create Network Rule Collection + $netRc = New-AzFirewallNetworkRuleCollection -Name $networkRcName -Priority $networkRcPriority -Rule $networkRule -ActionType $networkRcActionType + + # Create Second Network Rule + $networkRule2 = New-AzFirewallNetworkRule -Name $networkRule2Name -Description $networkRule2Desc -Protocol $networkRule2Protocol1, $networkRule2Protocol2 -SourceAddress $networkRule2SourceAddress1, $networkRule2SourceAddress2 -DestinationFqdn $networkRule2DestinationFqdn1 -DestinationPort $networkRule2DestinationPort1 + $networkRule2.AddProtocol($networkRule2Protocol3) + + # Add this second Network Rule to the rule collection + $netRc.AddRule($networkRule2) + + # Create AzureFirewall with DNSProxy enabled and DNS Servers provided + $azureFirewall = New-AzFirewall -Name $azureFirewallName -ResourceGroupName $rgname -Location $location -VirtualNetworkName $vnetName -PublicIpName $publicIpName -NetworkRuleCollection $netRc -EnableDnsProxy -DnsServer $dnsServers + + # Get AzureFirewall + $getAzureFirewall = Get-AzFirewall -name $azureFirewallName -ResourceGroupName $rgname + + # Verification + Assert-AreEqual $rgName $getAzureFirewall.ResourceGroupName + Assert-AreEqual $azureFirewallName $getAzureFirewall.Name + + # Check rule collections + Assert-AreEqual 1 @($getAzureFirewall.NetworkRuleCollections).Count + Assert-AreEqual 2 @($getAzureFirewall.NetworkRuleCollections[0].Rules).Count + + # Check DNS Proxy + Assert-AreEqual true $getAzureFirewall.DNSEnableProxy + Assert-AreEqualArray $dnsServers $getAzureFirewall.DnsServer + + # 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 + + $list = Get-AzFirewall -ResourceGroupName $rgname + Assert-AreEqual 0 @($list).Count + } + finally { + # Cleanup + Clean-ResourceGroup $rgname + } +} \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallTests/TestAzureFirewallCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallTests/TestAzureFirewallCRUD.json index a3e96f81ae33..645be48788d1 100644 --- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallTests/TestAzureFirewallCRUD.json +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallTests/TestAzureFirewallCRUD.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "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": [ - "5c11567c-17a4-400e-b9ac-64c5edd789db" + "a9d7b4c7-4c73-47a9-a46d-126c039c1ecc" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "edf4d167-8bd5-4113-81f2-d043ae921c80" + "ad17d2cb-1ebb-4a06-8a6e-e85313013e18" ], "x-ms-correlation-request-id": [ - "edf4d167-8bd5-4113-81f2-d043ae921c80" + "ad17d2cb-1ebb-4a06-8a6e-e85313013e18" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134027Z:edf4d167-8bd5-4113-81f2-d043ae921c80" + "WESTUS:20200508T041602Z:ad17d2cb-1ebb-4a06-8a6e-e85313013e18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:26 GMT" + "Fri, 08 May 2020 04:16:01 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,20 +54,20 @@ "-1" ], "Content-Length": [ - "78837" + "76718" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n },\r\n {\r\n \"applicationId\": \"6d057c82-a784-47ae-8d12-ca7b38cf06b4\",\r\n \"roleDefinitionId\": \"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\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 \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\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 \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\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 \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\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 \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\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 \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\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 \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\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 \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\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 \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchValidatePrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchNotifyPrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZonesInternal\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityPartnerProviders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\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 \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\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 \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"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 \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-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\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"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 \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"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\": \"None\"\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ipAllocations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "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 \"applicationId\": \"6d057c82-a784-47ae-8d12-ca7b38cf06b4\",\r\n \"roleDefinitionId\": \"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"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 \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"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 \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"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 \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"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 \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchValidatePrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchNotifyPrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZonesInternal\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityPartnerProviders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"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 \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"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 \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-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\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"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 \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"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\": \"None\"\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ipAllocations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourcegroups/ps4992?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlZ3JvdXBzL3BzNDk5Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/ps4809?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlZ3JvdXBzL3BzNDgwOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6f805479-59ee-4501-b2e9-4083a5ecd80b" + "4a28410c-f289-4881-afb1-dd04a831b1d3" ], "Accept-Language": [ "en-US" @@ -76,7 +76,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "598c954d-82d1-4d8d-86bf-518bf7a1d8f0" + "c5ae9fb5-3ac8-4d30-b046-6667be869b7a" ], "x-ms-correlation-request-id": [ - "598c954d-82d1-4d8d-86bf-518bf7a1d8f0" + "c5ae9fb5-3ac8-4d30-b046-6667be869b7a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134029Z:598c954d-82d1-4d8d-86bf-518bf7a1d8f0" + "WESTUS:20200508T041604Z:c5ae9fb5-3ac8-4d30-b046-6667be869b7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:28 GMT" + "Fri, 08 May 2020 04:16:04 GMT" ], "Content-Length": [ "170" @@ -123,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992\",\r\n \"name\": \"ps4992\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809\",\r\n \"name\": \"ps4809\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTg4Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzIyND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0e02479-f28b-4654-90e4-8e1669695362" + "c4a020a4-2e25-4f65-ad92-2cf91770afce" ], "Accept-Language": [ "en-US" @@ -142,7 +142,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -156,13 +156,13 @@ "gateway" ], "x-ms-request-id": [ - "2ec921dd-910c-4d3e-ae52-7f69d49f09ce" + "8680c734-f107-493c-af68-4b787005e394" ], "x-ms-correlation-request-id": [ - "2ec921dd-910c-4d3e-ae52-7f69d49f09ce" + "8680c734-f107-493c-af68-4b787005e394" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134029Z:2ec921dd-910c-4d3e-ae52-7f69d49f09ce" + "WESTUS:20200508T041605Z:8680c734-f107-493c-af68-4b787005e394" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:29 GMT" + "Fri, 08 May 2020 04:16:04 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,12 +183,12 @@ "150" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps9882' under resource group 'ps4992' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps7224' under resource group 'ps4809' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTg4Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzIyND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -196,7 +196,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -207,16 +207,16 @@ "no-cache" ], "ETag": [ - "W/\"b1e6f2b4-7434-4ccd-97a5-ab0231941eed\"" + "W/\"9659e712-bc83-4297-8fe7-f2ac100df6b5\"" ], "x-ms-request-id": [ - "cdd5066e-cc3c-4805-bfbf-c62a28496f76" + "6908699e-2d80-4844-82fb-e4ffc0b135d3" ], "x-ms-correlation-request-id": [ - "944a8e89-d8dc-4de6-8d37-ed46dc4e8874" + "2981510a-c0a1-425c-b20f-60e7717066e9" ], "x-ms-arm-service-request-id": [ - "7293063e-73f5-4842-9056-020f57d19926" + "5932a840-43da-4ce9-b0f3-76116168072e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -226,16 +226,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134038Z:944a8e89-d8dc-4de6-8d37-ed46dc4e8874" + "WESTUS:20200508T041612Z:2981510a-c0a1-425c-b20f-60e7717066e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:38 GMT" + "Fri, 08 May 2020 04:16:12 GMT" ], "Content-Length": [ "1299" @@ -247,17 +247,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9882\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882\",\r\n \"etag\": \"W/\\\"b1e6f2b4-7434-4ccd-97a5-ab0231941eed\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8f3e916c-4aab-4545-ba85-56bfe033f824\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"b1e6f2b4-7434-4ccd-97a5-ab0231941eed\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"ps7224\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224\",\r\n \"etag\": \"W/\\\"9659e712-bc83-4297-8fe7-f2ac100df6b5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9a037931-d3d6-4328-bc5d-19be4eba76b3\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"9659e712-bc83-4297-8fe7-f2ac100df6b5\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTg4Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzIyND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9be506de-a484-4931-bdcb-858fb3f8c7c4" + "479135c3-9c06-4864-b726-5a3c7fb1e55b" ], "Accept-Language": [ "en-US" @@ -266,7 +266,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -277,16 +277,16 @@ "no-cache" ], "ETag": [ - "W/\"b1e6f2b4-7434-4ccd-97a5-ab0231941eed\"" + "W/\"9659e712-bc83-4297-8fe7-f2ac100df6b5\"" ], "x-ms-request-id": [ - "9bde5b6d-1094-4baa-8899-0890dc6cdd4e" + "5c2f1f50-9a33-43a0-b9a4-d3c7ab258373" ], "x-ms-correlation-request-id": [ - "54e1a1a1-8258-479a-9959-17ed5a85ecbb" + "54346d3f-a047-4d91-921f-f2b1dcc3680a" ], "x-ms-arm-service-request-id": [ - "ffe9c489-256e-4b40-95ac-adc576ce1480" + "75a761b3-3119-46b4-800d-2a241c922b4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -296,16 +296,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134038Z:54e1a1a1-8258-479a-9959-17ed5a85ecbb" + "WESTUS:20200508T041612Z:54346d3f-a047-4d91-921f-f2b1dcc3680a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:38 GMT" + "Fri, 08 May 2020 04:16:12 GMT" ], "Content-Length": [ "1299" @@ -317,17 +317,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9882\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882\",\r\n \"etag\": \"W/\\\"b1e6f2b4-7434-4ccd-97a5-ab0231941eed\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8f3e916c-4aab-4545-ba85-56bfe033f824\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"b1e6f2b4-7434-4ccd-97a5-ab0231941eed\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"ps7224\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224\",\r\n \"etag\": \"W/\\\"9659e712-bc83-4297-8fe7-f2ac100df6b5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9a037931-d3d6-4328-bc5d-19be4eba76b3\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"9659e712-bc83-4297-8fe7-f2ac100df6b5\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTg4Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzIyND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a099aa8-a973-40fa-b559-37caba0a7c2c" + "84de0261-26b5-46b7-a892-b63370c2dc98" ], "Accept-Language": [ "en-US" @@ -336,7 +336,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -347,35 +347,35 @@ "no-cache" ], "ETag": [ - "W/\"b1e6f2b4-7434-4ccd-97a5-ab0231941eed\"" + "W/\"9659e712-bc83-4297-8fe7-f2ac100df6b5\"" ], "x-ms-request-id": [ - "20daa5cd-8297-4159-b300-708a4f14dfcb" + "69da8dca-f3ca-4b5f-9e8f-98dfe48db85e" ], "x-ms-correlation-request-id": [ - "65bf9420-0e05-4d92-8461-427e677dcd5f" + "904c8b44-03e4-4ccf-ab60-bf839d091bdf" ], "x-ms-arm-service-request-id": [ - "8029a774-0a1b-4258-89da-3aaa4b3e4cc9" + "89a4a252-d00f-4594-a81e-c36e731d2caf" ], "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-ratelimit-remaining-subscription-reads": [ + "11999" + ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134046Z:65bf9420-0e05-4d92-8461-427e677dcd5f" + "WESTUS:20200508T041617Z:904c8b44-03e4-4ccf-ab60-bf839d091bdf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:45 GMT" + "Fri, 08 May 2020 04:16:17 GMT" ], "Content-Length": [ "1299" @@ -387,17 +387,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9882\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882\",\r\n \"etag\": \"W/\\\"b1e6f2b4-7434-4ccd-97a5-ab0231941eed\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8f3e916c-4aab-4545-ba85-56bfe033f824\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"b1e6f2b4-7434-4ccd-97a5-ab0231941eed\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"ps7224\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224\",\r\n \"etag\": \"W/\\\"9659e712-bc83-4297-8fe7-f2ac100df6b5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9a037931-d3d6-4328-bc5d-19be4eba76b3\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"9659e712-bc83-4297-8fe7-f2ac100df6b5\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTg4Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzIyND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"AzureFirewallSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2a0d8c14-4290-4f32-94aa-e633c221bcbc" + "fb31b737-96cd-402b-a0a8-d1a1cae0663f" ], "Accept-Language": [ "en-US" @@ -406,7 +406,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,19 +426,19 @@ "3" ], "x-ms-request-id": [ - "1e7cd825-dd95-42d4-a3e7-6bfc00fa1958" + "9b477907-e9e8-4481-80cf-7144edf85ae0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/1e7cd825-dd95-42d4-a3e7-6bfc00fa1958?api-version=2020-04-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/9b477907-e9e8-4481-80cf-7144edf85ae0?api-version=2020-04-01" ], "x-ms-correlation-request-id": [ - "09527a38-4203-4b9e-b327-0d54daf09fb1" + "3a6d9235-4d8c-43be-b96b-18ca80bf38c4" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "4ff5cdba-fc54-47b5-a126-cfb1ce848b40" + "29a7fbbc-8a67-49e1-99fc-a49ec43393b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -451,13 +451,13 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134035Z:09527a38-4203-4b9e-b327-0d54daf09fb1" + "WESTUS:20200508T041609Z:3a6d9235-4d8c-43be-b96b-18ca80bf38c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:35 GMT" + "Fri, 08 May 2020 04:16:09 GMT" ], "Content-Length": [ "1297" @@ -469,12 +469,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9882\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882\",\r\n \"etag\": \"W/\\\"9458b37b-811b-4ae4-9f7d-8351dd893900\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8f3e916c-4aab-4545-ba85-56bfe033f824\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"9458b37b-811b-4ae4-9f7d-8351dd893900\\\"\",\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}", + "ResponseBody": "{\r\n \"name\": \"ps7224\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224\",\r\n \"etag\": \"W/\\\"48ac67af-d244-4076-9add-da7abcd5a178\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9a037931-d3d6-4328-bc5d-19be4eba76b3\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"48ac67af-d244-4076-9add-da7abcd5a178\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/1e7cd825-dd95-42d4-a3e7-6bfc00fa1958?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8xZTdjZDgyNS1kZDk1LTQyZDQtYTNlNy02YmZjMDBmYTE5NTg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/9b477907-e9e8-4481-80cf-7144edf85ae0?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy85YjQ3NzkwNy1lOWU4LTQ0ODEtODBjZi03MTQ0ZWRmODVhZTA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -482,7 +482,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -493,13 +493,13 @@ "no-cache" ], "x-ms-request-id": [ - "e4b703d3-a9cb-40ff-a6c7-db55d24bf082" + "c279e3fe-769d-401d-b9e1-3043916deddc" ], "x-ms-correlation-request-id": [ - "039fc2d8-42b6-4fa7-a897-f89a4843c8cd" + "8e666647-5d49-4bdb-be8e-10f0eed98383" ], "x-ms-arm-service-request-id": [ - "e1225e50-b53d-4001-b809-ed74bf5d4d22" + "3819c19a-e26e-481d-82b3-969e9e08484d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -509,16 +509,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134038Z:039fc2d8-42b6-4fa7-a897-f89a4843c8cd" + "WESTUS:20200508T041612Z:8e666647-5d49-4bdb-be8e-10f0eed98383" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:38 GMT" + "Fri, 08 May 2020 04:16:12 GMT" ], "Content-Length": [ "29" @@ -534,13 +534,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0ODc2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM4MjY5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0a9a1ed-9741-4335-9ec6-5a283e3eb33f" + "4a3ce0f0-065d-43c6-a26c-39c859506c74" ], "Accept-Language": [ "en-US" @@ -549,7 +549,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -563,13 +563,13 @@ "gateway" ], "x-ms-request-id": [ - "2670d062-9be9-44a7-b51a-ba3bff2ee3e7" + "03c3e68b-0de7-4133-a90c-60ae56b8e418" ], "x-ms-correlation-request-id": [ - "2670d062-9be9-44a7-b51a-ba3bff2ee3e7" + "03c3e68b-0de7-4133-a90c-60ae56b8e418" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134039Z:2670d062-9be9-44a7-b51a-ba3bff2ee3e7" + "WESTUS:20200508T041613Z:03c3e68b-0de7-4133-a90c-60ae56b8e418" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -578,7 +578,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:39 GMT" + "Fri, 08 May 2020 04:16:12 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -590,12 +590,12 @@ "152" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps4876' under resource group 'ps4992' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/ps8269' under resource group 'ps4809' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0ODc2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM4MjY5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -603,7 +603,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -614,16 +614,16 @@ "no-cache" ], "ETag": [ - "W/\"733c0a1c-cafc-4417-a34f-afe7d68584d2\"" + "W/\"8a736946-0014-4ecc-95cf-c59bc36a338b\"" ], "x-ms-request-id": [ - "d0eef1d7-ef2e-42ad-b084-96f3618c08b7" + "438c8720-3b24-440b-b792-113c22a55a1e" ], "x-ms-correlation-request-id": [ - "065e8f66-f66b-4bf1-b14d-88e30da35aa7" + "dc23e398-2a50-403c-9041-646cd6d90729" ], "x-ms-arm-service-request-id": [ - "911499ef-d2bb-48ee-a61e-9ff0120acfd0" + "df902ac1-6bea-4a12-bf39-97bea0cb8c62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,19 +633,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11929" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134045Z:065e8f66-f66b-4bf1-b14d-88e30da35aa7" + "WESTUS:20200508T041617Z:dc23e398-2a50-403c-9041-646cd6d90729" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:45 GMT" + "Fri, 08 May 2020 04:16:16 GMT" ], "Content-Length": [ - "635" + "632" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,17 +654,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4876\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\",\r\n \"etag\": \"W/\\\"733c0a1c-cafc-4417-a34f-afe7d68584d2\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b94dab99-2573-44c0-a1ad-4b98e7aa896c\",\r\n \"ipAddress\": \"52.253.224.198\",\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}", + "ResponseBody": "{\r\n \"name\": \"ps8269\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\",\r\n \"etag\": \"W/\\\"8a736946-0014-4ecc-95cf-c59bc36a338b\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"06bf5678-0ade-412e-b604-226879419a0f\",\r\n \"ipAddress\": \"20.39.2.141\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0ODc2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM4MjY5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "851804d0-02a6-45c9-8a04-60c761b4bfea" + "da73ad90-857b-4545-a4ef-bf4e06efad00" ], "Accept-Language": [ "en-US" @@ -673,7 +673,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -684,16 +684,16 @@ "no-cache" ], "ETag": [ - "W/\"733c0a1c-cafc-4417-a34f-afe7d68584d2\"" + "W/\"8a736946-0014-4ecc-95cf-c59bc36a338b\"" ], "x-ms-request-id": [ - "f49fc6b0-c548-4c61-8bff-04674e0a16eb" + "0d3ff22c-d3cf-4158-abe6-50fff0f5a670" ], "x-ms-correlation-request-id": [ - "65a31ddd-df16-4fa6-83b3-b63e2f126826" + "0188ef1f-6cb5-4116-8a32-8e1a24f3e47e" ], "x-ms-arm-service-request-id": [ - "4d9917a5-9a64-490f-bb40-e151824a7daf" + "540a6505-e8f5-49cb-82ab-037dc8b4a494" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -703,19 +703,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11928" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134045Z:65a31ddd-df16-4fa6-83b3-b63e2f126826" + "WESTUS:20200508T041617Z:0188ef1f-6cb5-4116-8a32-8e1a24f3e47e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:45 GMT" + "Fri, 08 May 2020 04:16:16 GMT" ], "Content-Length": [ - "635" + "632" ], "Content-Type": [ "application/json; charset=utf-8" @@ -724,17 +724,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4876\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\",\r\n \"etag\": \"W/\\\"733c0a1c-cafc-4417-a34f-afe7d68584d2\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b94dab99-2573-44c0-a1ad-4b98e7aa896c\",\r\n \"ipAddress\": \"52.253.224.198\",\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}", + "ResponseBody": "{\r\n \"name\": \"ps8269\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\",\r\n \"etag\": \"W/\\\"8a736946-0014-4ecc-95cf-c59bc36a338b\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"06bf5678-0ade-412e-b604-226879419a0f\",\r\n \"ipAddress\": \"20.39.2.141\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0ODc2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM4MjY5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b41f12b-d7e0-41a0-9eee-69ae2a0cda81" + "beb750b5-835c-4701-81c4-f0e48f5c05ab" ], "Accept-Language": [ "en-US" @@ -743,7 +743,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -754,16 +754,16 @@ "no-cache" ], "ETag": [ - "W/\"733c0a1c-cafc-4417-a34f-afe7d68584d2\"" + "W/\"8a736946-0014-4ecc-95cf-c59bc36a338b\"" ], "x-ms-request-id": [ - "e33b8953-48fc-4830-8ff3-cf75f798bc20" + "a2000a4f-1df1-4ffe-9974-f12a5c8fb20c" ], "x-ms-correlation-request-id": [ - "e45132e9-8f28-44a4-a76d-f58401cbcf41" + "19af2ecb-7d73-4d07-a398-a51b45b0b1cb" ], "x-ms-arm-service-request-id": [ - "052f2a1f-bd88-40b9-8ca0-984b9bf964d1" + "30e2f2f2-83b1-44a7-a39e-a1ce8724484e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -773,19 +773,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134046Z:e45132e9-8f28-44a4-a76d-f58401cbcf41" + "WESTUS:20200508T041617Z:19af2ecb-7d73-4d07-a398-a51b45b0b1cb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:46 GMT" + "Fri, 08 May 2020 04:16:17 GMT" ], "Content-Length": [ - "635" + "632" ], "Content-Type": [ "application/json; charset=utf-8" @@ -794,17 +794,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4876\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\",\r\n \"etag\": \"W/\\\"733c0a1c-cafc-4417-a34f-afe7d68584d2\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b94dab99-2573-44c0-a1ad-4b98e7aa896c\",\r\n \"ipAddress\": \"52.253.224.198\",\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}", + "ResponseBody": "{\r\n \"name\": \"ps8269\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\",\r\n \"etag\": \"W/\\\"8a736946-0014-4ecc-95cf-c59bc36a338b\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"06bf5678-0ade-412e-b604-226879419a0f\",\r\n \"ipAddress\": \"20.39.2.141\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM0ODc2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM4MjY5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", "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\": \"eastus2euap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cfce8076-a18c-4e13-85fa-229a4264fb6b" + "6c8c7878-1df0-4d69-b7c1-4099811ccc5a" ], "Accept-Language": [ "en-US" @@ -813,7 +813,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -833,19 +833,19 @@ "1" ], "x-ms-request-id": [ - "a26154db-288b-4944-a0b8-8ce0dd47b53f" + "70f316df-2cd5-4af9-8527-338d800c29d5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/a26154db-288b-4944-a0b8-8ce0dd47b53f?api-version=2020-04-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/70f316df-2cd5-4af9-8527-338d800c29d5?api-version=2020-04-01" ], "x-ms-correlation-request-id": [ - "5f84fcbf-ae96-41e1-97d5-3f38ec1b06f9" + "237be8a8-c520-4ca8-801c-5f30a3e8103d" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "2f411482-ce02-4299-8169-f7085b56be27" + "df29f21e-2620-456b-82de-a68974f413b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,13 +858,13 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134043Z:5f84fcbf-ae96-41e1-97d5-3f38ec1b06f9" + "WESTUS:20200508T041615Z:237be8a8-c520-4ca8-801c-5f30a3e8103d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:43 GMT" + "Fri, 08 May 2020 04:16:15 GMT" ], "Content-Length": [ "598" @@ -876,12 +876,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4876\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\",\r\n \"etag\": \"W/\\\"4aed662e-b6c7-475a-a580-c34879455a47\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b94dab99-2573-44c0-a1ad-4b98e7aa896c\",\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}", + "ResponseBody": "{\r\n \"name\": \"ps8269\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\",\r\n \"etag\": \"W/\\\"1616ea81-df47-4ca5-9b4d-178988983c42\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"06bf5678-0ade-412e-b604-226879419a0f\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/a26154db-288b-4944-a0b8-8ce0dd47b53f?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9hMjYxNTRkYi0yODhiLTQ5NDQtYTBiOC04Y2UwZGQ0N2I1M2Y/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/70f316df-2cd5-4af9-8527-338d800c29d5?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83MGYzMTZkZi0yY2Q1LTRhZjktODUyNy0zMzhkODAwYzI5ZDU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -889,7 +889,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -900,13 +900,13 @@ "no-cache" ], "x-ms-request-id": [ - "5fbd680a-6081-403c-abf9-bb73677eac02" + "dbff4746-83ca-4943-a651-d7afd8868463" ], "x-ms-correlation-request-id": [ - "f1ef2b17-5c43-43c6-9e19-320436532f3d" + "1b2486af-ee40-4f3d-929c-ab277fd3bbc9" ], "x-ms-arm-service-request-id": [ - "71024f77-518f-4fec-a363-6e4086d9efc7" + "3416e84b-20be-4a82-9c2e-e33a5af4723a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -916,16 +916,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11930" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134045Z:f1ef2b17-5c43-43c6-9e19-320436532f3d" + "WESTUS:20200508T041617Z:1b2486af-ee40-4f3d-929c-ab277fd3bbc9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:45 GMT" + "Fri, 08 May 2020 04:16:16 GMT" ], "Content-Length": [ "29" @@ -941,13 +941,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM0NjYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM1ODkxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bea60b7e-716c-4fac-8c10-d6d312e2e98b" + "65804ce3-5c2c-4721-89cd-bd8eaa440142" ], "Accept-Language": [ "en-US" @@ -956,7 +956,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -970,13 +970,13 @@ "gateway" ], "x-ms-request-id": [ - "c7266bff-4b83-40a9-a9ad-e54a28f03e66" + "9d6f7414-88e3-49bf-b70b-b5e5b4342e85" ], "x-ms-correlation-request-id": [ - "c7266bff-4b83-40a9-a9ad-e54a28f03e66" + "9d6f7414-88e3-49bf-b70b-b5e5b4342e85" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134047Z:c7266bff-4b83-40a9-a9ad-e54a28f03e66" + "WESTUS:20200508T041618Z:9d6f7414-88e3-49bf-b70b-b5e5b4342e85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -985,7 +985,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:46 GMT" + "Fri, 08 May 2020 04:16:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -997,12 +997,12 @@ "149" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/azureFirewalls/ps4663' under resource group 'ps4992' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/azureFirewalls/ps5891' under resource group 'ps4809' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM0NjYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM1ODkxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1010,7 +1010,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -1021,16 +1021,16 @@ "no-cache" ], "ETag": [ - "W/\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\"" + "W/\"9e5538db-270f-418c-a663-e4240d1cc80d\"" ], "x-ms-request-id": [ - "bc997963-370a-430b-bc63-8bc5625e16e9" + "5ab24c38-cc34-48b8-ac7d-c1417b65893b" ], "x-ms-correlation-request-id": [ - "71523227-4c1a-44ca-bdbb-1a25cf0f50ec" + "bce1e052-3f4f-4f34-b6db-a242bc4d14a6" ], "x-ms-arm-service-request-id": [ - "b041f6a7-4633-487a-80ab-6d766868ef5e" + "d636b5fd-f3c4-48d1-8c65-652111ce51e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1040,19 +1040,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11973" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134314Z:71523227-4c1a-44ca-bdbb-1a25cf0f50ec" + "WESTUS:20200508T042014Z:bce1e052-3f4f-4f34-b6db-a242bc4d14a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:43:13 GMT" + "Fri, 08 May 2020 04:20:14 GMT" ], "Content-Length": [ - "1634" + "1741" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1061,17 +1061,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4663\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5891\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM0NjYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM1ODkxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ccd32622-46c1-49f2-a980-c9e1ca790a3e" + "0503f4dd-a7a4-4cd0-8c24-574a8c70a748" ], "Accept-Language": [ "en-US" @@ -1080,7 +1080,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -1091,16 +1091,16 @@ "no-cache" ], "ETag": [ - "W/\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\"" + "W/\"9e5538db-270f-418c-a663-e4240d1cc80d\"" ], "x-ms-request-id": [ - "eb8d215c-fc23-4125-a5fe-e0df015a142e" + "f891d837-8037-4a06-9c6a-437ed9ae09cf" ], "x-ms-correlation-request-id": [ - "08f39a3b-5640-4dd8-8dfc-b179486aaa32" + "95064a4b-344a-4d18-aeef-eddd2acb4910" ], "x-ms-arm-service-request-id": [ - "6706d918-f956-4323-af0b-aa37566f5252" + "07d309ca-37fd-4f9d-a1e8-0cd1fd2affef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,19 +1110,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11972" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134314Z:08f39a3b-5640-4dd8-8dfc-b179486aaa32" + "WESTUS:20200508T042014Z:95064a4b-344a-4d18-aeef-eddd2acb4910" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:43:13 GMT" + "Fri, 08 May 2020 04:20:14 GMT" ], "Content-Length": [ - "1634" + "1741" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1131,17 +1131,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4663\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5891\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM0NjYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM1ODkxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56e314d9-d657-4ecf-88d8-746e6bbf5ee4" + "fc9e310e-07e7-4917-bc79-20c1df3caffa" ], "Accept-Language": [ "en-US" @@ -1150,7 +1150,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -1161,16 +1161,16 @@ "no-cache" ], "ETag": [ - "W/\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\"" + "W/\"9e5538db-270f-418c-a663-e4240d1cc80d\"" ], "x-ms-request-id": [ - "3e16e691-3b11-433d-a65c-4de5d2417c6b" + "77b1d5ee-e69b-43b1-8f3e-0f2c278f41e6" ], "x-ms-correlation-request-id": [ - "d61b7505-4982-4b20-a794-80cd1ad4f71c" + "d4087f87-1369-4310-8395-dadb6e0a9c7f" ], "x-ms-arm-service-request-id": [ - "20d98547-1f43-4073-b66d-b0a62c0f9d75" + "73b238ee-2ec9-4bc1-8ed6-9348b32558ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1180,19 +1180,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11984" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134315Z:d61b7505-4982-4b20-a794-80cd1ad4f71c" + "WESTUS:20200508T042014Z:d4087f87-1369-4310-8395-dadb6e0a9c7f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:43:14 GMT" + "Fri, 08 May 2020 04:20:13 GMT" ], "Content-Length": [ - "1634" + "1741" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1201,17 +1201,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4663\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5891\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM0NjYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM1ODkxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe038a96-20fe-4f84-a078-d56550a54b6b" + "b0f67078-c497-403f-875c-c6387e6174e4" ], "Accept-Language": [ "en-US" @@ -1220,7 +1220,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -1231,16 +1231,16 @@ "no-cache" ], "ETag": [ - "W/\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\"" + "W/\"9e5538db-270f-418c-a663-e4240d1cc80d\"" ], "x-ms-request-id": [ - "65cda186-1514-4945-bf72-78b2669c6e6f" + "320a7255-7699-4f8b-93de-03565cfc864d" ], "x-ms-correlation-request-id": [ - "6a18f010-fd86-4fb9-ab5d-ed1c98b496c1" + "f22434fc-b6bb-418d-96f3-41953f0309ee" ], "x-ms-arm-service-request-id": [ - "48fb1ec2-9762-4e17-a437-a2f1e215b7ab" + "fc7a3d55-d1a4-4646-a608-ce8a18733906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1253,16 +1253,16 @@ "11999" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134320Z:6a18f010-fd86-4fb9-ab5d-ed1c98b496c1" + "WESTUS:20200508T042018Z:f22434fc-b6bb-418d-96f3-41953f0309ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:43:20 GMT" + "Fri, 08 May 2020 04:20:18 GMT" ], "Content-Length": [ - "1634" + "1741" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1271,12 +1271,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4663\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5891\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM0NjYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM1ODkxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1284,7 +1284,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -1295,16 +1295,16 @@ "no-cache" ], "ETag": [ - "W/\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\"" + "W/\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\"" ], "x-ms-request-id": [ - "25574a74-7911-4d8e-9612-2030ec6a9d0e" + "4caa38d1-8847-4bb2-887f-3f93562b298c" ], "x-ms-correlation-request-id": [ - "cf7c9ee5-886c-4bca-b084-05271d09f81a" + "f58a22b3-b3e9-46f0-93db-0e3abf0b6809" ], "x-ms-arm-service-request-id": [ - "888ee820-4d7b-4078-a1cb-42f9ef806c5b" + "a1b81bcb-6a59-496d-8f0c-462ff8f16738" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1314,19 +1314,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11987" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134425Z:cf7c9ee5-886c-4bca-b084-05271d09f81a" + "WESTUS:20200508T042212Z:f58a22b3-b3e9-46f0-93db-0e3abf0b6809" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:44:24 GMT" + "Fri, 08 May 2020 04:22:11 GMT" ], "Content-Length": [ - "8908" + "9009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1335,17 +1335,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4663\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"networkRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/applicationRuleCollections/appRc\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule2\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule3\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n },\r\n {\r\n \"name\": \"appRc2\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/applicationRuleCollections/appRc2\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.1.2.3\",\r\n \"translatedPort\": \"91\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"52.253.224.198\"\r\n ],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"52.253.224.198\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5891\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {\r\n \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"networkRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/applicationRuleCollections/appRc\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule2\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule3\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n },\r\n {\r\n \"name\": \"appRc2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/applicationRuleCollections/appRc2\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.1.2.3\",\r\n \"translatedPort\": \"91\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.2.141\"\r\n ],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.2.141\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM0NjYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM1ODkxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c3694e4-6b1b-45a8-884d-bce5c7b0071a" + "10bdd800-04de-466d-bd13-b7b52d877ea3" ], "Accept-Language": [ "en-US" @@ -1354,7 +1354,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -1365,16 +1365,16 @@ "no-cache" ], "ETag": [ - "W/\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\"" + "W/\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\"" ], "x-ms-request-id": [ - "a8ec43b8-3948-478c-a73e-e721d0657def" + "0e375451-81ee-4811-843f-750c54af4a28" ], "x-ms-correlation-request-id": [ - "a85eec76-e698-4d21-86e2-2e46d58618a4" + "00eab3f8-bda2-48d5-8605-daeb764989a5" ], "x-ms-arm-service-request-id": [ - "bdca2bab-1968-45fb-8a52-92a54cb6293e" + "a61d025f-442d-4b3b-acab-adaf10257f36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1384,19 +1384,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11986" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134425Z:a85eec76-e698-4d21-86e2-2e46d58618a4" + "WESTUS:20200508T042212Z:00eab3f8-bda2-48d5-8605-daeb764989a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:44:25 GMT" + "Fri, 08 May 2020 04:22:11 GMT" ], "Content-Length": [ - "8908" + "9009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1405,17 +1405,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4663\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"networkRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/applicationRuleCollections/appRc\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule2\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule3\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n },\r\n {\r\n \"name\": \"appRc2\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/applicationRuleCollections/appRc2\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.1.2.3\",\r\n \"translatedPort\": \"91\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"52.253.224.198\"\r\n ],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"52.253.224.198\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5891\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {\r\n \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"networkRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/applicationRuleCollections/appRc\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule2\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule3\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n },\r\n {\r\n \"name\": \"appRc2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/applicationRuleCollections/appRc2\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.1.2.3\",\r\n \"translatedPort\": \"91\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.2.141\"\r\n ],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.2.141\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM0NjYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM1ODkxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6965b13b-910a-445a-91b3-bf6dd105de18" + "fcd82723-f674-4369-bf44-eca2790559cb" ], "Accept-Language": [ "en-US" @@ -1424,7 +1424,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -1435,16 +1435,16 @@ "no-cache" ], "ETag": [ - "W/\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\"" + "W/\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\"" ], "x-ms-request-id": [ - "a77736aa-3a81-44b2-a513-a08beed44d4d" + "feba56ae-251e-48c5-9855-ee6fc5ab92fa" ], "x-ms-correlation-request-id": [ - "6ac20cfc-084b-462d-8187-ec9559916737" + "0305df04-1b3d-422e-85d2-741cc63c23df" ], "x-ms-arm-service-request-id": [ - "8676e05a-0549-41bb-862b-b64d3b49c244" + "46d2b033-2f77-4729-b42b-b51eac288397" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1454,19 +1454,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134426Z:6ac20cfc-084b-462d-8187-ec9559916737" + "WESTUS:20200508T042212Z:0305df04-1b3d-422e-85d2-741cc63c23df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:44:26 GMT" + "Fri, 08 May 2020 04:22:12 GMT" ], "Content-Length": [ - "8908" + "9009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1475,17 +1475,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4663\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"networkRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/applicationRuleCollections/appRc\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule2\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule3\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n },\r\n {\r\n \"name\": \"appRc2\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/applicationRuleCollections/appRc2\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"67bb4cf2-7e60-4432-bdeb-e18ebb18833f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.1.2.3\",\r\n \"translatedPort\": \"91\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"52.253.224.198\"\r\n ],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"52.253.224.198\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5891\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {\r\n \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"networkRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/applicationRuleCollections/appRc\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule2\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule3\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n },\r\n {\r\n \"name\": \"appRc2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/applicationRuleCollections/appRc2\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"df931b5d-8a8d-4a28-b2c0-d0dd3eb60166\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.1.2.3\",\r\n \"translatedPort\": \"91\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.2.141\"\r\n ],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.2.141\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM0NjYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM1ODkxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", "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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\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\": \"eastus2euap\"\r\n}", + "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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/subnets/AzureFirewallSubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\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 \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n }\r\n },\r\n \"zones\": [],\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "66f41c0c-177a-4acc-81d9-f927c71674fb" + "a5af44d1-c6f9-4b86-890d-47d6943445de" ], "Accept-Language": [ "en-US" @@ -1494,13 +1494,13 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "863" + "970" ] }, "ResponseHeaders": { @@ -1514,19 +1514,19 @@ "10" ], "x-ms-request-id": [ - "de889854-e00d-42c6-a2c8-8c988815d871" + "3ab44b92-4301-47cd-acba-ffceff24fb03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/de889854-e00d-42c6-a2c8-8c988815d871?api-version=2020-04-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01" ], "x-ms-correlation-request-id": [ - "02b7ae0b-1911-4de3-abe9-f39ccbed02e6" + "21b25310-abfd-4b59-9bd5-2fe05efbc84c" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "b0006f6d-9c07-48f8-84ea-0a1729c554ad" + "afe07bd9-b09b-4ef7-8657-a999bd192d5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,19 +1536,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134050Z:02b7ae0b-1911-4de3-abe9-f39ccbed02e6" + "WESTUS:20200508T041620Z:21b25310-abfd-4b59-9bd5-2fe05efbc84c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:40:50 GMT" + "Fri, 08 May 2020 04:16:20 GMT" ], "Content-Length": [ - "1590" + "1697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1557,17 +1557,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4663\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663\",\r\n \"etag\": \"W/\\\"059f8637-0d86-4ed2-a027-5d70ccaf9695\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"059f8637-0d86-4ed2-a027-5d70ccaf9695\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5891\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891\",\r\n \"etag\": \"W/\\\"311d053f-2465-4767-b74c-bba3e3fbadc5\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"311d053f-2465-4767-b74c-bba3e3fbadc5\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM0NjYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM1ODkxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"applicationRuleCollections\": [\r\n {\r\n \"properties\": {\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"fqdnTags\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule2\",\r\n \"sourceAddresses\": [],\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"fqdnTags\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule3\",\r\n \"sourceAddresses\": [],\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"fqdnTags\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"name\": \"appRc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"fqdnTags\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"name\": \"appRc2\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"properties\": {\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule\",\r\n \"description\": \"desc1\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"52.253.224.198\"\r\n ],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ],\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.1.2.3\",\r\n \"translatedPort\": \"91\",\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"52.253.224.198\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ],\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedPort\": \"96\",\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"name\": \"natRc\"\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"properties\": {\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": []\r\n },\r\n {\r\n \"name\": \"networkRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"name\": \"networkRc\"\r\n }\r\n ],\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\r\n }\r\n },\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\"\r\n }\r\n ],\r\n \"threatIntelMode\": \"Deny\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {}\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663\",\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"applicationRuleCollections\": [\r\n {\r\n \"properties\": {\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"fqdnTags\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule2\",\r\n \"sourceAddresses\": [],\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"fqdnTags\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule3\",\r\n \"sourceAddresses\": [],\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"fqdnTags\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"name\": \"appRc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"fqdnTags\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"name\": \"appRc2\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"properties\": {\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule\",\r\n \"description\": \"desc1\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"20.39.2.141\"\r\n ],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ],\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.1.2.3\",\r\n \"translatedPort\": \"91\",\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"20.39.2.141\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ],\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedPort\": \"96\",\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"name\": \"natRc\"\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"properties\": {\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": []\r\n },\r\n {\r\n \"name\": \"networkRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"name\": \"networkRc\"\r\n }\r\n ],\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/subnets/AzureFirewallSubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\r\n }\r\n },\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\"\r\n }\r\n ],\r\n \"threatIntelMode\": \"Deny\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {\r\n \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n }\r\n },\r\n \"zones\": [],\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891\",\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "93d9d65d-2cf3-468b-81d3-eb3bfbf847ca" + "e317a76d-53c5-4090-8380-0231d1dbb9c4" ], "Accept-Language": [ "en-US" @@ -1576,13 +1576,13 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "6646" + "6747" ] }, "ResponseHeaders": { @@ -1596,19 +1596,19 @@ "10" ], "x-ms-request-id": [ - "cbe07eb4-6924-4023-a4de-a32d1096066c" + "7f167a33-52ab-4b99-8500-2218e97c4683" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/cbe07eb4-6924-4023-a4de-a32d1096066c?api-version=2020-04-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7f167a33-52ab-4b99-8500-2218e97c4683?api-version=2020-04-01" ], "x-ms-correlation-request-id": [ - "61653cc0-e2dc-497d-8269-ce55f6529d03" + "7c2d9f47-6772-484e-a284-6a68f7871377" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "0ed2cc88-8ce3-474e-a42a-31b8e58e683f" + "afc03a77-34f1-41c6-9845-1e843fe1bd70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1621,16 +1621,16 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134323Z:61653cc0-e2dc-497d-8269-ce55f6529d03" + "WESTUS:20200508T042020Z:7c2d9f47-6772-484e-a284-6a68f7871377" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:43:23 GMT" + "Fri, 08 May 2020 04:20:20 GMT" ], "Content-Length": [ - "8903" + "9004" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,12 +1639,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4663\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663\",\r\n \"etag\": \"W/\\\"18fd897d-d3ca-4ee2-a8e1-76c439323454\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"18fd897d-d3ca-4ee2-a8e1-76c439323454\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"18fd897d-d3ca-4ee2-a8e1-76c439323454\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"networkRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/applicationRuleCollections/appRc\",\r\n \"etag\": \"W/\\\"18fd897d-d3ca-4ee2-a8e1-76c439323454\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule2\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule3\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n },\r\n {\r\n \"name\": \"appRc2\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/applicationRuleCollections/appRc2\",\r\n \"etag\": \"W/\\\"18fd897d-d3ca-4ee2-a8e1-76c439323454\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"18fd897d-d3ca-4ee2-a8e1-76c439323454\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.1.2.3\",\r\n \"translatedPort\": \"91\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"52.253.224.198\"\r\n ],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"52.253.224.198\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5891\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891\",\r\n \"etag\": \"W/\\\"2655a54f-1ca9-4627-ba6d-0fa202751d1d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {\r\n \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"2655a54f-1ca9-4627-ba6d-0fa202751d1d\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"2655a54f-1ca9-4627-ba6d-0fa202751d1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"networkRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/applicationRuleCollections/appRc\",\r\n \"etag\": \"W/\\\"2655a54f-1ca9-4627-ba6d-0fa202751d1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule2\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"appRule3\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n },\r\n {\r\n \"name\": \"appRc2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/applicationRuleCollections/appRc2\",\r\n \"etag\": \"W/\\\"2655a54f-1ca9-4627-ba6d-0fa202751d1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule\",\r\n \"description\": \"desc1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*google.com\",\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"2655a54f-1ca9-4627-ba6d-0fa202751d1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.1.2.3\",\r\n \"translatedPort\": \"91\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.2.141\"\r\n ],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.2.141\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/de889854-e00d-42c6-a2c8-8c988815d871?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9kZTg4OTg1NC1lMDBkLTQyYzYtYTJjOC04Yzk4ODgxNWQ4NzE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1652,7 +1652,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -1666,13 +1666,13 @@ "10" ], "x-ms-request-id": [ - "bc52282e-ee3b-41c5-ac60-60d5a0e07796" + "1ff0889f-3229-40e3-bea0-61827e4f2b22" ], "x-ms-correlation-request-id": [ - "2d02bc7f-5854-465d-adc9-c22b1adcc4f0" + "95adc167-753a-45e8-86fb-c938949dad9d" ], "x-ms-arm-service-request-id": [ - "91aac0c4-7683-4318-8dae-e9388bd75a7c" + "bc3a9168-3f92-4a97-992d-4319da2518ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1682,16 +1682,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134101Z:2d02bc7f-5854-465d-adc9-c22b1adcc4f0" + "WESTUS:20200508T041631Z:95adc167-753a-45e8-86fb-c938949dad9d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:41:00 GMT" + "Fri, 08 May 2020 04:16:30 GMT" ], "Content-Length": [ "30" @@ -1707,8 +1707,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/de889854-e00d-42c6-a2c8-8c988815d871?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9kZTg4OTg1NC1lMDBkLTQyYzYtYTJjOC04Yzk4ODgxNWQ4NzE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1716,7 +1716,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -1730,13 +1730,13 @@ "10" ], "x-ms-request-id": [ - "8a61d004-6d36-4eb1-a366-0ea6ba35aa44" + "277dfd10-0f25-463b-a97d-33eca042c869" ], "x-ms-correlation-request-id": [ - "ad9d2294-1336-481c-a25c-b6622a1f33c8" + "6d6f91f4-7044-46d4-b7c8-5e624f129ae3" ], "x-ms-arm-service-request-id": [ - "31b7e97d-eb37-4d98-9bec-9610bd69b952" + "5700fd3d-cc65-4d58-8be1-1c89177b8c50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1746,16 +1746,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134111Z:ad9d2294-1336-481c-a25c-b6622a1f33c8" + "WESTUS:20200508T041641Z:6d6f91f4-7044-46d4-b7c8-5e624f129ae3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:41:10 GMT" + "Fri, 08 May 2020 04:16:40 GMT" ], "Content-Length": [ "30" @@ -1771,8 +1771,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/de889854-e00d-42c6-a2c8-8c988815d871?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9kZTg4OTg1NC1lMDBkLTQyYzYtYTJjOC04Yzk4ODgxNWQ4NzE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1780,7 +1780,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -1794,13 +1794,13 @@ "10" ], "x-ms-request-id": [ - "106d9183-6ef3-4e81-9c41-8faae8cfb45e" + "7ff4c278-7ef9-4313-8f46-5f30fb28e014" ], "x-ms-correlation-request-id": [ - "cdab1bce-7756-4a19-b75c-09a139a5dac4" + "c7a4fdfc-66af-4f25-886f-a7543bd4bc7c" ], "x-ms-arm-service-request-id": [ - "e6f1b89a-efab-47e6-b5b3-df23e3f2aa85" + "13995a85-759b-4310-9802-da1904587174" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1810,16 +1810,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134121Z:cdab1bce-7756-4a19-b75c-09a139a5dac4" + "WESTUS:20200508T041651Z:c7a4fdfc-66af-4f25-886f-a7543bd4bc7c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:41:21 GMT" + "Fri, 08 May 2020 04:16:50 GMT" ], "Content-Length": [ "30" @@ -1835,8 +1835,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/de889854-e00d-42c6-a2c8-8c988815d871?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9kZTg4OTg1NC1lMDBkLTQyYzYtYTJjOC04Yzk4ODgxNWQ4NzE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1844,7 +1844,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -1858,13 +1858,13 @@ "10" ], "x-ms-request-id": [ - "36347902-74c0-4b90-9bf6-45f1162740b0" + "68f57117-8f9f-4a22-90f8-5176d6a41f04" ], "x-ms-correlation-request-id": [ - "2fa79b1b-f5c3-4582-a234-9108ac1dc494" + "5e49c0fc-b27b-497f-bea8-8abbe053dd62" ], "x-ms-arm-service-request-id": [ - "fcb42dae-e275-4dc5-8421-29ce7ae79f82" + "54f49882-10c3-4b5d-906f-a22364058702" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1874,16 +1874,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11993" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134131Z:2fa79b1b-f5c3-4582-a234-9108ac1dc494" + "WESTUS:20200508T041701Z:5e49c0fc-b27b-497f-bea8-8abbe053dd62" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:41:31 GMT" + "Fri, 08 May 2020 04:17:00 GMT" ], "Content-Length": [ "30" @@ -1899,8 +1899,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/de889854-e00d-42c6-a2c8-8c988815d871?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9kZTg4OTg1NC1lMDBkLTQyYzYtYTJjOC04Yzk4ODgxNWQ4NzE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1908,7 +1908,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -1922,13 +1922,13 @@ "10" ], "x-ms-request-id": [ - "e18b16a0-5f29-4243-9254-46e10cd78877" + "23f29e11-5767-4fea-b91e-55aa0462fe7f" ], "x-ms-correlation-request-id": [ - "8f6d01e5-a2e7-44b6-be74-6ae631d4bed8" + "dec4b1a4-4845-4e9b-8b5e-77d20f0cb53f" ], "x-ms-arm-service-request-id": [ - "1451e724-34e2-4709-952a-0cbaf76375db" + "747c0a50-bb2d-4d02-b4a6-7ae97db2c830" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1938,16 +1938,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11992" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134142Z:8f6d01e5-a2e7-44b6-be74-6ae631d4bed8" + "WESTUS:20200508T041711Z:dec4b1a4-4845-4e9b-8b5e-77d20f0cb53f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:41:41 GMT" + "Fri, 08 May 2020 04:17:10 GMT" ], "Content-Length": [ "30" @@ -1963,8 +1963,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/de889854-e00d-42c6-a2c8-8c988815d871?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9kZTg4OTg1NC1lMDBkLTQyYzYtYTJjOC04Yzk4ODgxNWQ4NzE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1972,7 +1972,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -1986,13 +1986,13 @@ "10" ], "x-ms-request-id": [ - "0a41e135-4b57-4183-9ab1-539378bdfca6" + "700fd304-4c2b-4f70-9ae7-8746eaed1417" ], "x-ms-correlation-request-id": [ - "5db1a74e-1130-4e54-9a2c-a955ad919a59" + "26232bd1-d33c-4881-8646-819a67e116ee" ], "x-ms-arm-service-request-id": [ - "6820830c-dc78-4a54-b3be-cc0035c4a464" + "66bc1678-f265-4a05-a3cb-31c13b4751ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2002,16 +2002,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11991" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134152Z:5db1a74e-1130-4e54-9a2c-a955ad919a59" + "WESTUS:20200508T041721Z:26232bd1-d33c-4881-8646-819a67e116ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:41:51 GMT" + "Fri, 08 May 2020 04:17:20 GMT" ], "Content-Length": [ "30" @@ -2027,8 +2027,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/de889854-e00d-42c6-a2c8-8c988815d871?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9kZTg4OTg1NC1lMDBkLTQyYzYtYTJjOC04Yzk4ODgxNWQ4NzE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,7 +2036,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -2050,32 +2050,96 @@ "10" ], "x-ms-request-id": [ - "5f5971be-6984-40f0-825a-175f845b9aae" + "5f8a1d3a-6e07-4016-a1bc-ffb12aede3ea" ], "x-ms-correlation-request-id": [ - "beaf559e-01ff-44c1-b1bb-8f1e20808858" + "83520412-658d-45f6-8667-fc4ae3a54732" ], "x-ms-arm-service-request-id": [ - "82cca21f-b172-446b-9780-32ab9d67497c" + "486f7e19-7259-46db-87ba-0175f4ab99c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T041731Z:83520412-658d-45f6-8667-fc4ae3a54732" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:17: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "426262e1-b815-4a54-88a7-354587da3ba0" + ], + "x-ms-correlation-request-id": [ + "b52accb2-4acd-4e6f-8152-d0e63b575fb9" + ], + "x-ms-arm-service-request-id": [ + "25152d45-7acb-4249-93eb-76e9110cf7c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134202Z:beaf559e-01ff-44c1-b1bb-8f1e20808858" + "WESTUS:20200508T041741Z:b52accb2-4acd-4e6f-8152-d0e63b575fb9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:42:02 GMT" + "Fri, 08 May 2020 04:17:41 GMT" ], "Content-Length": [ "30" @@ -2091,8 +2155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/de889854-e00d-42c6-a2c8-8c988815d871?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9kZTg4OTg1NC1lMDBkLTQyYzYtYTJjOC04Yzk4ODgxNWQ4NzE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2100,7 +2164,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -2114,13 +2178,13 @@ "10" ], "x-ms-request-id": [ - "20ef7003-412b-41ba-9588-217dc6804df4" + "59687d2b-a722-4660-9a39-2a7009697aa6" ], "x-ms-correlation-request-id": [ - "3451a14f-e7fd-4ef6-bf11-90dca425c75e" + "50e76c05-56d0-4f1d-b021-6cfdb9099960" ], "x-ms-arm-service-request-id": [ - "60f3b33a-6d44-4d52-9915-42dc636077d7" + "86d806ff-3f35-4b01-a7cb-022bdfed4874" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2130,16 +2194,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11988" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134213Z:3451a14f-e7fd-4ef6-bf11-90dca425c75e" + "WESTUS:20200508T041752Z:50e76c05-56d0-4f1d-b021-6cfdb9099960" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:42:12 GMT" + "Fri, 08 May 2020 04:17:52 GMT" ], "Content-Length": [ "30" @@ -2155,8 +2219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/de889854-e00d-42c6-a2c8-8c988815d871?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9kZTg4OTg1NC1lMDBkLTQyYzYtYTJjOC04Yzk4ODgxNWQ4NzE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2164,7 +2228,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -2178,13 +2242,13 @@ "10" ], "x-ms-request-id": [ - "c52edd0d-ced3-4afb-b189-5b9e46aedccb" + "fc48cba3-302a-40f8-a8fc-d5c2c3911e44" ], "x-ms-correlation-request-id": [ - "c0c52080-ff4e-4e10-a9fe-899abd81501b" + "6efe4194-3b1e-4550-bf0c-916efa17a48c" ], "x-ms-arm-service-request-id": [ - "abbdd17f-7b9d-41de-961a-567977a5363b" + "d606a46d-6876-4e45-a6d9-a364039ab743" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2194,16 +2258,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11987" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134223Z:c0c52080-ff4e-4e10-a9fe-899abd81501b" + "WESTUS:20200508T041802Z:6efe4194-3b1e-4550-bf0c-916efa17a48c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:42:23 GMT" + "Fri, 08 May 2020 04:18:02 GMT" ], "Content-Length": [ "30" @@ -2219,8 +2283,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/de889854-e00d-42c6-a2c8-8c988815d871?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9kZTg4OTg1NC1lMDBkLTQyYzYtYTJjOC04Yzk4ODgxNWQ4NzE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2228,7 +2292,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -2242,13 +2306,13 @@ "10" ], "x-ms-request-id": [ - "d6ef5c8f-e63d-4e92-af64-b385c104ae41" + "a381826f-fd0f-4916-9257-00588247c8d8" ], "x-ms-correlation-request-id": [ - "b5d52693-c149-4e0c-93d7-0dc3c9e51a4f" + "15cb8fe4-bb01-4557-8df7-51811d6dd1c3" ], "x-ms-arm-service-request-id": [ - "0b980db4-b5d5-4bec-bcfc-0a1eef924a82" + "1e6d5969-4384-4a3b-b4e3-a52f17162a00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2258,16 +2322,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11986" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134233Z:b5d52693-c149-4e0c-93d7-0dc3c9e51a4f" + "WESTUS:20200508T041812Z:15cb8fe4-bb01-4557-8df7-51811d6dd1c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:42:33 GMT" + "Fri, 08 May 2020 04:18:12 GMT" ], "Content-Length": [ "30" @@ -2283,8 +2347,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/de889854-e00d-42c6-a2c8-8c988815d871?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9kZTg4OTg1NC1lMDBkLTQyYzYtYTJjOC04Yzk4ODgxNWQ4NzE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2292,7 +2356,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -2306,13 +2370,13 @@ "10" ], "x-ms-request-id": [ - "cee76b42-7ab0-45ac-8d60-883e88434547" + "d3c85f7f-4195-4c20-aedb-1569bb113b35" ], "x-ms-correlation-request-id": [ - "0474d1e1-c53f-4f7e-883c-5cb9a08d2b26" + "701ffbee-f733-469d-a61d-1c86bc2a95a6" ], "x-ms-arm-service-request-id": [ - "1b4c9e8c-4ce6-4cbc-b859-b56da3bb8c5f" + "bbea7748-ef1e-49f2-9b6f-8623902c0d68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2322,16 +2386,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11985" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134243Z:0474d1e1-c53f-4f7e-883c-5cb9a08d2b26" + "WESTUS:20200508T041822Z:701ffbee-f733-469d-a61d-1c86bc2a95a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:42:43 GMT" + "Fri, 08 May 2020 04:18:22 GMT" ], "Content-Length": [ "30" @@ -2347,8 +2411,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/de889854-e00d-42c6-a2c8-8c988815d871?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9kZTg4OTg1NC1lMDBkLTQyYzYtYTJjOC04Yzk4ODgxNWQ4NzE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2356,7 +2420,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -2370,13 +2434,13 @@ "10" ], "x-ms-request-id": [ - "d4aee18d-fcf6-4d2d-8b6e-864396ab4583" + "dae91620-967c-4bfd-ac20-1ac51eb5c61e" ], "x-ms-correlation-request-id": [ - "e4cd1950-9a7d-440f-936a-7ff40dbd5803" + "5625296f-ffea-42e1-a0db-fba0e1b9f198" ], "x-ms-arm-service-request-id": [ - "5bd8ed4d-6982-41dd-8d53-3fb865bb6067" + "30a9e59a-effe-4215-9dc4-0d52175334d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2386,16 +2450,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11984" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134253Z:e4cd1950-9a7d-440f-936a-7ff40dbd5803" + "WESTUS:20200508T041832Z:5625296f-ffea-42e1-a0db-fba0e1b9f198" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:42:53 GMT" + "Fri, 08 May 2020 04:18:32 GMT" ], "Content-Length": [ "30" @@ -2411,8 +2475,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/de889854-e00d-42c6-a2c8-8c988815d871?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9kZTg4OTg1NC1lMDBkLTQyYzYtYTJjOC04Yzk4ODgxNWQ4NzE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2420,7 +2484,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -2434,13 +2498,13 @@ "10" ], "x-ms-request-id": [ - "0c001c92-67bb-4cab-9336-98b425e35731" + "b4a113f8-f117-4a8b-894c-edf687238dc5" ], "x-ms-correlation-request-id": [ - "c3b8eece-f152-4ddc-a54d-bd316f3ef9e8" + "707aad04-30a3-4841-8c77-4a8315196322" ], "x-ms-arm-service-request-id": [ - "276a4292-f28a-404d-812d-f734025afc2f" + "80822698-1ae8-41e9-b402-85957a69f065" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2450,16 +2514,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11983" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134303Z:c3b8eece-f152-4ddc-a54d-bd316f3ef9e8" + "WESTUS:20200508T041842Z:707aad04-30a3-4841-8c77-4a8315196322" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:43:03 GMT" + "Fri, 08 May 2020 04:18:42 GMT" ], "Content-Length": [ "30" @@ -2475,8 +2539,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/de889854-e00d-42c6-a2c8-8c988815d871?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9kZTg4OTg1NC1lMDBkLTQyYzYtYTJjOC04Yzk4ODgxNWQ4NzE/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2484,7 +2548,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -2494,36 +2558,39 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "6f466d70-d4d0-46f0-8baa-ab512e331f43" + "629b04c4-b0d6-4686-87e3-bcc792158ad0" ], "x-ms-correlation-request-id": [ - "2aa2067c-c32a-4cfd-9170-28341cd53706" + "fe55b66d-8445-4ab2-896d-75fe4b548123" ], "x-ms-arm-service-request-id": [ - "d483050e-caa0-493e-9ad3-1d9c4d6d5049" + "ad016d62-faa7-4eb3-8bb9-558794e3e5c3" ], "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-ratelimit-remaining-subscription-reads": [ + "11982" + ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134314Z:2aa2067c-c32a-4cfd-9170-28341cd53706" + "WESTUS:20200508T041852Z:fe55b66d-8445-4ab2-896d-75fe4b548123" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:43:13 GMT" + "Fri, 08 May 2020 04:18:52 GMT" ], "Content-Length": [ - "29" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2532,26 +2599,84 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3f8d25e5-e847-4d4c-8d52-eae74eb1a84f" + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], - "Accept-Language": [ - "en-US" + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5ba32f2b-45fa-44e4-bff8-e24c6e8549f8" + ], + "x-ms-correlation-request-id": [ + "c297b6f3-a40f-4966-93b2-7900de87e7f0" + ], + "x-ms-arm-service-request-id": [ + "f722afef-c34c-4e0f-bc7b-ad9c94f78ae1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T041902Z:c297b6f3-a40f-4966-93b2-7900de87e7f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:19: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -2561,14 +2686,17 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "d39be0da-fba1-4824-9982-21e358f475fc" + "d401c30b-be90-48e6-95cb-161ff57fe337" ], "x-ms-correlation-request-id": [ - "ea120f40-6bfa-4781-ac35-fee2d61e18c4" + "74ca36f4-a961-414d-afd7-2c4464362fe4" ], "x-ms-arm-service-request-id": [ - "cdc2cd6e-0cad-42ed-9166-afef36afbd3b" + "99115858-4a59-419f-a093-0b8ef1f12d9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2578,19 +2706,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11980" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134316Z:ea120f40-6bfa-4781-ac35-fee2d61e18c4" + "WESTUS:20200508T041913Z:74ca36f4-a961-414d-afd7-2c4464362fe4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:43:15 GMT" + "Fri, 08 May 2020 04:19:12 GMT" ], "Content-Length": [ - "1811" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2599,26 +2727,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps4663\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "353ccbb3-4b01-421c-8d8e-7cf93fbf25e9" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -2628,57 +2750,61 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "a668bd76-b2ad-42c3-8777-ecd121c89167" + "64ada7df-6133-4da9-9c2d-2b8ebb587d20" ], "x-ms-correlation-request-id": [ - "a668bd76-b2ad-42c3-8777-ecd121c89167" + "413c3334-2e36-4272-831f-eeef143bdfc9" ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135109Z:a668bd76-b2ad-42c3-8777-ecd121c89167" + "x-ms-arm-service-request-id": [ + "d5b499ed-df2b-4b61-b97e-267c5261ad3c" ], "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:20200508T041923Z:413c3334-2e36-4272-831f-eeef143bdfc9" + ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:51:08 GMT" + "Fri, 08 May 2020 04:19:22 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "12" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/azureFirewalls?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9henVyZUZpcmV3YWxscz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "95320410-f127-442f-967d-633d1224a2c2" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -2688,62 +2814,61 @@ "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "44744f24-d120-40ce-be8b-52eec662bab3", - "54ebe143-1c44-443e-b78d-df7a7f97db9f", - "3203e922-7a59-4576-b0c8-7d2f5c17cb09" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "78c72d5d-b564-4d62-98b1-f02d97643f4b" + "6de2779d-4af3-4eb6-8465-ba0a41f6bbb1" ], "x-ms-correlation-request-id": [ - "78c72d5d-b564-4d62-98b1-f02d97643f4b" + "4d7ae0f4-84be-49e4-88f0-c53fc3fa8375" ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134316Z:78c72d5d-b564-4d62-98b1-f02d97643f4b" + "x-ms-arm-service-request-id": [ + "11f32440-3e48-40bc-aaf6-5687ee7eae5e" ], "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:20200508T041933Z:4d7ae0f4-84be-49e4-88f0-c53fc3fa8375" + ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:43:16 GMT" + "Fri, 08 May 2020 04:19:32 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "10704" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"liz_testFW\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\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\": \"liz_test_IP\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW/azureFirewallIpConfigurations/liz_test_IP\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/publicIPAddresses/liz_test_IP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/virtualNetworks/liz_test_vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netCollect\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW/networkRuleCollections/netCollect\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 203,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.10.1\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"192.168.10.0\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8080\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n },\r\n {\r\n \"name\": \"netrule\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW/networkRuleCollections/netrule\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"hello\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/EastUs2Liz/providers/Microsoft.Network/ipGroups/ipgroup90\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/EastUs2Liz/providers/Microsoft.Network/ipGroups/ipgroup90\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8080\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\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 \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/virtualNetworks/from-vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf0\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/publicIPAddresses/AzFwDataPublicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/virtualNetworks/from-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"tunnelToFirewall\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\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\": \"tunnelToPIP\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall/azureFirewallIpConfigurations/tunnelToPIP\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/publicIPAddresses/tunnelToPIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/virtualNetworks/to-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.1.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"azfw\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguPowershellTetsing/providers/Microsoft.Network/azureFirewalls/azfw\",\r\n \"etag\": \"W/\\\"099397e8-278c-4616-99c6-6578e772df3c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\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 \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"ps4663\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/azureFirewalls?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9henVyZUZpcmV3YWxscz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ff968543-19fd-46b1-9dcc-20ce57124424" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -2753,62 +2878,3146 @@ "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "211acc03-55df-4eb6-9a46-1c1c6dd93460", - "38bdf0e5-e5a0-4f68-8021-8b31fedda9f6", - "93d47882-c544-4062-9a07-504d5d06bb77" + "Retry-After": [ + "10" ], - "x-ms-ratelimit-remaining-subscription-reads": [ + "x-ms-request-id": [ + "abd0f3b1-c839-4485-925c-10f56defa3d7" + ], + "x-ms-correlation-request-id": [ + "55a24272-4c9d-4ab8-a14b-3b1b12467dd4" + ], + "x-ms-arm-service-request-id": [ + "73447136-1c10-4d01-a541-10cf3ccea5e7" + ], + "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:20200508T041943Z:55a24272-4c9d-4ab8-a14b-3b1b12467dd4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:19: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4aebe05b-5936-48d7-a464-b6ec3211c70b" + ], + "x-ms-correlation-request-id": [ + "9989178e-d3dc-4271-8fc3-35567aeaca1d" + ], + "x-ms-arm-service-request-id": [ + "4b90da2a-82ec-4025-927b-74617700d27a" + ], + "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:20200508T041953Z:9989178e-d3dc-4271-8fc3-35567aeaca1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:19: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b39b09c6-3b20-4cd1-bf79-867859e5a73d" + ], + "x-ms-correlation-request-id": [ + "b3054779-b469-4deb-9d3b-a34952daa7fb" + ], + "x-ms-arm-service-request-id": [ + "6666a981-c534-4fca-9943-19fc99c0bc72" + ], + "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:20200508T042003Z:b3054779-b469-4deb-9d3b-a34952daa7fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:20: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/3ab44b92-4301-47cd-acba-ffceff24fb03?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zYWI0NGI5Mi00MzAxLTQ3Y2QtYWNiYS1mZmNlZmYyNGZiMDM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "820e62bb-db20-462a-9cd0-cbc7ef3f0287" + ], + "x-ms-correlation-request-id": [ + "993bcd03-5df8-4040-9975-4c122319c9a2" + ], + "x-ms-arm-service-request-id": [ + "f58bc943-954c-42f5-b3c3-61d9073d8885" + ], + "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:20200508T042013Z:993bcd03-5df8-4040-9975-4c122319c9a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:20:13 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb434f02-59c1-40df-afef-ff37cdcfd28e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1b5a8371-fd3f-40bc-9297-05ee07821447" + ], + "x-ms-correlation-request-id": [ + "36cb6e6b-2ffe-45ba-bf1a-8105917dfb17" + ], + "x-ms-arm-service-request-id": [ + "3b8b3d60-b46c-40d1-9816-e4d6b8b11408" + ], + "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:20200508T042014Z:36cb6e6b-2ffe-45ba-bf1a-8105917dfb17" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:20:14 GMT" + ], + "Content-Length": [ + "1930" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps5891\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73d1ad58-c42b-4074-8649-b2c84434312e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "25226e91-2f01-4743-85dd-feb8996c936f" + ], + "x-ms-correlation-request-id": [ + "25226e91-2f01-4743-85dd-feb8996c936f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T043454Z:25226e91-2f01-4743-85dd-feb8996c936f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:34:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/azureFirewalls?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9henVyZUZpcmV3YWxscz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a1fdf48-347b-47a8-8fdb-0f01f2aa9c53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "f235039b-bdc2-4ec4-86ee-05c28cb66542", + "50423a1f-6690-4738-a1b3-8cd6e1c62de1", + "7889f109-0bf3-48a1-a998-0ea3610ed05c", + "5facdc1a-64a7-49a2-b113-e6546803734b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9bdc034f-0e50-435a-bf15-d5f832386ca3" + ], + "x-ms-correlation-request-id": [ + "9bdc034f-0e50-435a-bf15-d5f832386ca3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T042015Z:9bdc034f-0e50-435a-bf15-d5f832386ca3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:20:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "165830" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"1068f573-aea0-478a-80a9-cd9f92867469\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"1068f573-aea0-478a-80a9-cd9f92867469\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/firewallPolicies/firewallPolicy1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"jashwanth-fw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/azureFirewalls/jashwanth-fw\",\r\n \"etag\": \"W/\\\"a2b1de0c-6e19-4cda-87d3-89a80a87658b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\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\": \"jashwanth-fw-public-ip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/azureFirewalls/jashwanth-fw/azureFirewallIpConfigurations/jashwanth-fw-public-ip\",\r\n \"etag\": \"W/\\\"a2b1de0c-6e19-4cda-87d3-89a80a87658b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/publicIPAddresses/jashwanth-fw-public-ip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/virtualNetworks/jashwanth-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"piabeynafw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/azureFirewalls/piabeynafw\",\r\n \"etag\": \"W/\\\"64e0f920-6078-45b3-bfab-8e56f559ed38\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"piabeynapip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/azureFirewalls/piabeynafw/azureFirewallIpConfigurations/piabeynapip\",\r\n \"etag\": \"W/\\\"64e0f920-6078-45b3-bfab-8e56f559ed38\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/publicIPAddresses/piabeynapip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/virtualNetworks/piabeynavnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"piabeynafw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/azureFirewalls/piabeynafw\",\r\n \"etag\": \"W/\\\"f80b78b8-7962-4265-b69f-30fbac02911d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"piabeynapip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/azureFirewalls/piabeynafw/azureFirewallIpConfigurations/piabeynapip\",\r\n \"etag\": \"W/\\\"f80b78b8-7962-4265-b69f-30fbac02911d\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/publicIPAddresses/piabeynapip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/virtualNetworks/piabeynavnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"wvdTagTestFW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Off\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW/azureFirewallIpConfigurations/AzureFirewallIpConfiguration\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/publicIPAddresses/AzureFirewallPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/virtualNetworks/wvdTagTestVnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"NRC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW/networkRuleCollections/NRC1\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"NR1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.0.0/16\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"ARC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW/applicationRuleCollections/ARC1\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"AR1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*.ro\",\r\n \"*.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"Firewall-adig\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/azureFirewalls/Firewall-adig\",\r\n \"etag\": \"W/\\\"807e0e18-a8ba-4d0f-a377-c56292ae5ef1\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"IP\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/azureFirewalls/Firewall-adig/azureFirewallIpConfigurations/IP\",\r\n \"etag\": \"W/\\\"807e0e18-a8ba-4d0f-a377-c56292ae5ef1\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/publicIPAddresses/IP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/virtualNetworks/vnet-adig/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"sujith-fw1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/azureFirewalls/sujith-fw1\",\r\n \"etag\": \"W/\\\"eb3ebd84-d15d-4d66-8aec-0783f6d66152\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/azureFirewalls/sujith-fw1/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"eb3ebd84-d15d-4d66-8aec-0783f6d66152\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/centralUSE_Liz/providers/Microsoft.Network/publicIPAddresses/fsfs\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/virtualNetworks/sujith-vnet1/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/firewallPolicies/sujith-fp1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testFirewall3\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/azureFirewalls/testFirewall3\",\r\n \"etag\": \"W/\\\"6d464623-f3c9-41f8-a58d-7def3915cbd4\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/virtualHubs/ankapooTestHub\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.238.247\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testFirewall4\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest3/providers/Microsoft.Network/azureFirewalls/testFirewall4\",\r\n \"etag\": \"W/\\\"730d96bd-278a-47eb-923a-a42d32b6f761\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest3/providers/Microsoft.Network/virtualHubs/TestVirtualHub3\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.159.193\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy3\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testFW01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestFirewallPolicy/providers/Microsoft.Network/azureFirewalls/testFW01\",\r\n \"etag\": \"W/\\\"e7deb856-d89f-4d37-8452-a51e3410c6ce\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestFirewallPolicy/providers/Microsoft.Network/virtualHubs/FirewallPolicyTestHub\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"40.89.56.210\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFirewallPolicy1/providers/Microsoft.Network/firewallPolicies/testPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ankapooTestFW10\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestRG10/providers/Microsoft.Network/azureFirewalls/ankapooTestFW10\",\r\n \"etag\": \"W/\\\"c69b219e-893f-43e0-9c61-118ba551e15d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestRG10/providers/Microsoft.Network/virtualHubs/ankapooTestHub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestRG10/providers/Microsoft.Network/firewallPolicies/ankapooTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ankapooPolicyRefFW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooPolicyRefTestRG/providers/Microsoft.Network/azureFirewalls/ankapooPolicyRefFW\",\r\n \"etag\": \"W/\\\"d9606fe5-be14-4534-bd4c-a50193640625\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooPolicyRefTestRG/providers/Microsoft.Network/virtualHubs/ankapooPolicyRefVHub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/ankapooPolicyRefTestRG/providers/Microsoft.Network/firewallPolicies/ankapooTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"040ac58e-1f40-4ac1-8126-64cdada7eb2f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"040ac58e-1f40-4ac1-8126-64cdada7eb2f\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"040ac58e-1f40-4ac1-8126-64cdada7eb2f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/publicIPAddresses/azureFirewallPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"deepalFW01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan10/providers/Microsoft.Network/azureFirewalls/deepalFW01\",\r\n \"etag\": \"W/\\\"e36339cd-d2b9-4621-a5a9-7b3fde8222fa\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan10/providers/Microsoft.Network/virtualHubs/eastus2euap-7252019-18-58-19\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.227.154\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManager/providers/Microsoft.Network/firewallPolicies/maravTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-7312019-20-52-23\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan15/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-7312019-20-52-23\",\r\n \"etag\": \"W/\\\"42360aa2-27c1-4a48-953a-09e5720d1f98\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan15/providers/Microsoft.Network/virtualHubs/eastus2euap-7312019-20-52-23\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.1.13\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/isguBB01/providers/Microsoft.Network/firewallPolicies/FWPolicy27\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"fp01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan16/providers/Microsoft.Network/azureFirewalls/fp01\",\r\n \"etag\": \"W/\\\"88f8a7e1-6b25-425c-9fe8-614b96d1e302\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan16/providers/Microsoft.Network/virtualHubs/eastus2euap-812019-22-43-10\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.231.71\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManager/providers/Microsoft.Network/firewallPolicies/maravTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"fp02\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan18/providers/Microsoft.Network/azureFirewalls/fp02\",\r\n \"etag\": \"W/\\\"152af447-4d3d-40f3-8266-e27485c0b121\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan18/providers/Microsoft.Network/virtualHubs/eastus2euap-812019-23-19-11\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.153.27\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/SujithRG-EUAP/providers/Microsoft.Network/firewallPolicies/sujithFPwithRG7\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-7232019-22-43-16\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan7/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-7232019-22-43-16\",\r\n \"etag\": \"W/\\\"69b000e7-2d63-4177-bf7c-717fa64fb6e5\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan7/providers/Microsoft.Network/virtualHubs/eastus2euap-7232019-22-43-16\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy3\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"dmanesku_shoebox_throughput_2_firewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/virtualNetworks/dmanesku_shoebox_throughput_2-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"dmanesku_shoebox_throughput_3-firewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/virtualNetworks/dmanesku_shoebox_throughput_3-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall_e\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/publicIPAddresses/ps3edbe9005e\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/virtualNetworks/ps0fff3c7d84/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup4\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup4\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup4\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"52.253.226.50\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"girish01FW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"AzureFirewallIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW/azureFirewallIpConfigurations/AzureFirewallIpConfiguration\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/publicIPAddresses/AzureFirewallPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/virtualNetworks/girish01Vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"NRC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW/networkRuleCollections/NRC1\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"NR1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.0.0/16\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"ARC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW/applicationRuleCollections/ARC1\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"AR1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*.ro\",\r\n \"*.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-882019-23-30-41\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girishCBN_RG/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-882019-23-30-41\",\r\n \"etag\": \"W/\\\"766f294e-d895-4fac-aee4-f6963a9998b8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girishCBN_RG/providers/Microsoft.Network/virtualHubs/eastus2euap-882019-23-30-41\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/cf6dd6b5-8d66-42fd-85a9-108021552699/resourcegroups/LeahTestPolicy/providers/Microsoft.Network/firewallPolicies/PolicyWithAllRules\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"gTemplateTestFW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW/azureFirewallIpConfigurations/AzureFirewallIpConfiguration\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/publicIPAddresses/AzureFirewallPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/virtualNetworks/gTemplateTestVnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"NRC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW/networkRuleCollections/NRC1\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"NR1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.0.0/16\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"ARC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW/applicationRuleCollections/ARC1\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"AR1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*.fb.com\",\r\n \"*.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"ar2\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [\r\n \"WindowsUpdate\"\r\n ],\r\n \"targetFqdns\": [],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.SNAT.PrivateRanges\": \"IANAPrivateRanges\",\r\n \"Network.DNS.EnableProxy\": \"true\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.SNAT.PrivateRanges\": \"IANAPrivateRanges\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\",\r\n \"Network.DNS.EnableProxy\": \"true\",\r\n \"Network.DNS.Servers\": \"10.0.0.4\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.arstechnica.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\",\r\n \"443\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\",\r\n \"*google.com\",\r\n \"*azure.com\",\r\n \"*arstechnica.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"toServer\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/natRuleCollections/toServer\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"SSHtoServ\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server.contoso.com\",\r\n \"translatedPort\": \"22\",\r\n \"sourceAddresses\": [\r\n \"45.30.29.40\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.3.84\"\r\n ],\r\n \"destinationPorts\": [\r\n \"22\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/azureFirewallPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"RC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/applicationRuleCollections/RC1\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"R1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"www.google.com\",\r\n \"*github.com\",\r\n \"*blob.core.windows.net\",\r\n \"*table.core.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"9dea1cf8-1674-405b-9873-16026e4c8717\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.Servers\": \"8.8.8.8\",\r\n \"Network.DNS.EnableProxy\": \"true\"\r\n },\r\n \"managementIpConfiguration\": {\r\n \"name\": \"AzureFirewallMgmtIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/AzureFirewallMgmtIpConfiguration\",\r\n \"etag\": \"W/\\\"9dea1cf8-1674-405b-9873-16026e4c8717\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/dnsmgmtpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/dns-vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"9dea1cf8-1674-405b-9873-16026e4c8717\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.2.2.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/dnspip1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/dns-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"0658831b-e045-42c6-a0cb-9b9069f2624f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"0658831b-e045-42c6-a0cb-9b9069f2624f\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"0658831b-e045-42c6-a0cb-9b9069f2624f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/publicIPAddresses/azureFirewallPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"3a8cc7ad-242d-48c0-957b-822c4fb0b88b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"MgmtIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/MgmtIpConf\",\r\n \"etag\": \"W/\\\"3a8cc7ad-242d-48c0-957b-822c4fb0b88b\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/publicIPAddresses/AzureFirewallBvtMgmtPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/virtualNetworks/AzureFirewallvnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"3a8cc7ad-242d-48c0-957b-822c4fb0b88b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/publicIPAddresses/AzureFirewallBvtPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/virtualNetworks/AzureFirewallvnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_Hub01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/azureFirewalls/AzureFirewall_Hub01\",\r\n \"etag\": \"W/\\\"58b0b6b4-ac45-429c-b8ff-0263cea5f141\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/virtualHubs/Hub01\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.0.205\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/firewallPolicies/FWPolicy27\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_isgu03Hub\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/azureFirewalls/AzureFirewall_isgu03Hub\",\r\n \"etag\": \"W/\\\"37090e5c-4063-492d-8428-5b04d62034b8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/virtualHubs/isgu03Hub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/cf6dd6b5-8d66-42fd-85a9-108021552699/resourcegroups/LeahTestPolicy/providers/Microsoft.Network/firewallPolicies/PolicyWithHub\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_isguYair01Hub\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/azureFirewalls/AzureFirewall_isguYair01Hub\",\r\n \"etag\": \"W/\\\"4ff467dc-a029-4890-9d30-9fff15a8d1db\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/virtualHubs/isguYair01Hub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/firewallPolicies/fpTest1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_TestHub3\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/azureFirewalls/AzureFirewall_TestHub3\",\r\n \"etag\": \"W/\\\"0c0aea4f-5fc8-4880-af22-4a0ad210772e\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/virtualHubs/TestHub3\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/stmaneaFirewallManager/providers/Microsoft.Network/firewallPolicies/testPolicy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_TestHub4\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/azureFirewalls/AzureFirewall_TestHub4\",\r\n \"etag\": \"W/\\\"dcc7e692-9ad4-4c1e-a383-96e6cca3ac1d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/virtualHubs/TestHub4\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/stmaneaFirewallManager/providers/Microsoft.Network/firewallPolicies/testPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_TestHub6\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/azureFirewalls/AzureFirewall_TestHub6\",\r\n \"etag\": \"W/\\\"67099697-44a9-4fc9-8298-1c1e243fd0ec\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/virtualHubs/TestHub6\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/stmaneaFirewallManager/providers/Microsoft.Network/firewallPolicies/testPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"jiejwu-cbn\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/azureFirewalls/jiejwu-cbn\",\r\n \"etag\": \"W/\\\"50fbf0e9-1300-42af-94b2-112b79c514ad\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"jiejwu-cbn\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/azureFirewalls/jiejwu-cbn/azureFirewallIpConfigurations/jiejwu-cbn\",\r\n \"etag\": \"W/\\\"50fbf0e9-1300-42af-94b2-112b79c514ad\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/publicIPAddresses/jiejwu-cbn\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/virtualNetworks/jiejwu-cbn/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"test\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/azureFirewalls/jiejwu-cbn/applicationRuleCollections/test\",\r\n \"etag\": \"W/\\\"50fbf0e9-1300-42af-94b2-112b79c514ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"http\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"www.google.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"mssql\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sqldb1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"bing\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-892019-22-13-18\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/liyue/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-892019-22-13-18\",\r\n \"etag\": \"W/\\\"c485e6ff-3748-4de9-9ad4-ad55da74422b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/liyue/providers/Microsoft.Network/virtualHubs/eastus2euap-892019-22-13-18\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"90.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.230.115\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/liyue/providers/Microsoft.Network/firewallPolicies/testPolicy5\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_maravFirewallManagerCBN2vHub\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManagerCBN2RG/providers/Microsoft.Network/azureFirewalls/AzureFirewall_maravFirewallManagerCBN2vHub\",\r\n \"etag\": \"W/\\\"118ce7d3-6eff-436b-8821-44603775fb79\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManagerCBN2RG/providers/Microsoft.Network/virtualHubs/maravFirewallManagerCBN2vHub\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.1.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.153.30\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/maravFirewallManagerCBN2RG/providers/Microsoft.Network/firewallPolicies/maravFirewallManagerCBN2FirewallPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"piabeynafw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/azureFirewalls/piabeynafw\",\r\n \"etag\": \"W/\\\"87850159-cd39-473b-b9ad-84dc81072cbf\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\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\": \"piabeynapip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/azureFirewalls/piabeynafw/azureFirewallIpConfigurations/piabeynapip\",\r\n \"etag\": \"W/\\\"87850159-cd39-473b-b9ad-84dc81072cbf\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/publicIPAddresses/piabeynapip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/virtualNetworks/piabeynavnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"ps5891\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"vwan22azfw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/publicIPAddresses/Fwpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/virtualNetworks/HV_eastus2euap-9172019-_c6084b09-6aa1-4762-9020-5b48e308b287/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"allowAll\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw/networkRuleCollections/allowAll\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"allowInternet\",\r\n \"protocols\": [\r\n \"TCP\",\r\n \"ICMP\",\r\n \"UDP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"allowRdp\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw/natRuleCollections/allowRdp\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"allowRdp\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.12.0.4\",\r\n \"translatedPort\": \"3389\",\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.2.139\"\r\n ],\r\n \"destinationPorts\": [\r\n \"3390\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_rHub2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/azureFirewalls/AzureFirewall_rHub2\",\r\n \"etag\": \"W/\\\"b4a1effe-1c32-4ec3-9f7a-ddbb31bfd66f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/virtualHubs/rHub2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_rHub5\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/azureFirewalls/AzureFirewall_rHub5\",\r\n \"etag\": \"W/\\\"d093da65-867d-44b0-9364-6cec5ff1c1f0\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/virtualHubs/rHub5\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.225.89\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_rTestHub1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/azureFirewalls/AzureFirewall_rTestHub1\",\r\n \"etag\": \"W/\\\"276c43c9-09e5-4ce3-b2e6-c93e10199dd3\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/virtualHubs/rTestHub1\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.153.206\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManager/providers/Microsoft.Network/firewallPolicies/maravTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub11\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub11\",\r\n \"etag\": \"W/\\\"0378463c-5c2f-45c1-8a4a-640bd6f8a221\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub11\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.64.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.225.126\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub18\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub18\",\r\n \"etag\": \"W/\\\"5ee85626-a822-458e-8615-34ab14140ce9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub18\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub19\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub19\",\r\n \"etag\": \"W/\\\"5cc51059-9772-4a6c-afb3-192c8cb7c217\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub19\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub4\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub4\",\r\n \"etag\": \"W/\\\"15e61fa7-34b4-49c4-b924-153ed0cfecea\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub4\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.64.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.3.88\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub9\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub9\",\r\n \"etag\": \"W/\\\"0c3af043-f0eb-4f51-b12a-0ba7bdc71fa5\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub9\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN10\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN10\",\r\n \"etag\": \"W/\\\"3a169859-701e-499d-b293-371f926737d6\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN10\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.230.102\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN11\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN11\",\r\n \"etag\": \"W/\\\"2d183df7-a164-47a4-9ae0-c2a9f5fbf83a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN11\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.4.222\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN3\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN3\",\r\n \"etag\": \"W/\\\"95af3486-8b19-4206-8db5-536e09afcbb9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN3\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.16.255\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN5\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN5\",\r\n \"etag\": \"W/\\\"ca1ca9be-eafd-41b4-84dd-a70556b4c9af\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN5\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN6\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN6\",\r\n \"etag\": \"W/\\\"df352d09-1853-47fe-a098-c0ce6988e643\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN6\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN7\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN7\",\r\n \"etag\": \"W/\\\"60429276-65cb-4f88-9cda-7efc1e214463\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN7\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN8\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN8\",\r\n \"etag\": \"W/\\\"52a3628e-0cb5-422d-b711-33b66c1bf103\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN8\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN9\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN9\",\r\n \"etag\": \"W/\\\"54cfba8c-7dde-4f23-8d58-092473d22f2a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN9\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.224.58\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-vhubN1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-vhubN1\",\r\n \"etag\": \"W/\\\"4bd454e6-8420-43ed-a47d-4a730cc3a809\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-vhubN1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-vhubN2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-vhubN2\",\r\n \"etag\": \"W/\\\"fec7d4aa-bfe2-44df-98e5-b6858eb19bb8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-vhubN2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_SujithHub-EUAP\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/SujithRG-EUAP/providers/Microsoft.Network/azureFirewalls/AzureFirewall_SujithHub-EUAP\",\r\n \"etag\": \"W/\\\"3834f1ea-eee5-4c96-a997-ec870e486adf\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/SujithRG-EUAP/providers/Microsoft.Network/virtualHubs/SujithHub-EUAP\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/SujithRG-EUAP/providers/Microsoft.Network/firewallPolicies/sujithPOlicyWithRG\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"tejas-test-fw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/azureFirewalls/tejas-test-fw\",\r\n \"etag\": \"W/\\\"728afdce-1848-49b8-b0c5-8d1d33008dba\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\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\": \"tejas-test-fwip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/azureFirewalls/tejas-test-fw/azureFirewallIpConfigurations/tejas-test-fwip\",\r\n \"etag\": \"W/\\\"728afdce-1848-49b8-b0c5-8d1d33008dba\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/publicIPAddresses/tejas-test-fwip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/virtualNetworks/tejas-test-fwvnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"httpsrc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/azureFirewalls/tejas-test-fw/natRuleCollections/httpsrc\",\r\n \"etag\": \"W/\\\"728afdce-1848-49b8-b0c5-8d1d33008dba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"https\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.0.2.5\",\r\n \"translatedPort\": \"80\",\r\n \"sourceAddresses\": [\r\n \"167.220.24.48\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.21.80\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"testfw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\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\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/publicIPAddresses/azureFirewalls-ip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/testName\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_isgu03Hub_1aa8240e-a44b-45f2-9c5f-9ca11a7623a6/providers/Microsoft.Network/publicIPAddresses/AzFwPip\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/testName1\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/EastUs2Liz/providers/Microsoft.Network/publicIPAddresses/newIp\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/testName2\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ipgroup_eastus2euap/providers/Microsoft.Network/publicIPAddresses/pscdcdd48f82\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"aaddf684-3dca-4977-bd6a-15a97a911eb5\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"aaddf684-3dca-4977-bd6a-15a97a911eb5\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/publicIPAddresses/psf63c308623\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/virtualNetworks/psa0280fdec0/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"1bf1c355-12f5-41f2-9c2d-16547718d6d0\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"1bf1c355-12f5-41f2-9c2d-16547718d6d0\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/publicIPAddresses/ps40c897b3cc\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/virtualNetworks/ps2dc56f63d3/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"85f19274-1c06-423d-b070-e67527762e5a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"85f19274-1c06-423d-b070-e67527762e5a\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/publicIPAddresses/pse77e054b86\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/virtualNetworks/pscbfeebbb2d/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/publicIPAddresses/psa432cd78fe\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/virtualNetworks/ps258f72e844/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/23\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-5\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-7\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-9\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-11\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-13\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-15\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-17\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-19\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-21\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-23\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-25\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-27\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-29\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-31\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-33\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-35\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-37\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-39\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-41\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-43\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-45\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-47\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-49\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"52.253.153.213\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/publicIPAddresses/ps4a1e31b38a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/virtualNetworks/psf6475698bb/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/23\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-5\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-7\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-9\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-11\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-13\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-15\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-17\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-19\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"20.39.17.23\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/publicIPAddresses/ps35b11a953e\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/virtualNetworks/ps9cd83d5f0e/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/23\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-5\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-7\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-9\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-11\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-13\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-15\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-17\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-19\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-21\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-23\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-25\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-27\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-29\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-31\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-33\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-35\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-37\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-39\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-41\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-43\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-45\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-47\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-49\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-51\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-53\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-55\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-57\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-59\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-61\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-63\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-65\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-67\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-69\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-71\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-73\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-75\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-77\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-79\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-81\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-83\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-85\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-87\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-89\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-91\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-93\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-95\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-97\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-99\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"20.39.18.100\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/azureFirewalls?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9henVyZUZpcmV3YWxscz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "029bef81-bdeb-4da8-8038-c76075a4a3b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "d8641e6a-4327-4362-b162-ce70efa9a559", + "c809d5bd-0f5b-46c3-8260-bc452a1c36ef", + "31a4a83d-a234-4e4c-bfcb-24ea23f1f6bb", + "7c129efb-f5b0-437d-8267-801bc15d5362" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "4a9a6d79-7505-4d7b-af59-22c0e5bf51a3" + ], + "x-ms-correlation-request-id": [ + "4a9a6d79-7505-4d7b-af59-22c0e5bf51a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T042016Z:4a9a6d79-7505-4d7b-af59-22c0e5bf51a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:20:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "165830" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"1068f573-aea0-478a-80a9-cd9f92867469\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"1068f573-aea0-478a-80a9-cd9f92867469\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/firewallPolicies/firewallPolicy1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"jashwanth-fw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/azureFirewalls/jashwanth-fw\",\r\n \"etag\": \"W/\\\"a2b1de0c-6e19-4cda-87d3-89a80a87658b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\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\": \"jashwanth-fw-public-ip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/azureFirewalls/jashwanth-fw/azureFirewallIpConfigurations/jashwanth-fw-public-ip\",\r\n \"etag\": \"W/\\\"a2b1de0c-6e19-4cda-87d3-89a80a87658b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/publicIPAddresses/jashwanth-fw-public-ip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/virtualNetworks/jashwanth-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"piabeynafw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/azureFirewalls/piabeynafw\",\r\n \"etag\": \"W/\\\"64e0f920-6078-45b3-bfab-8e56f559ed38\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"piabeynapip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/azureFirewalls/piabeynafw/azureFirewallIpConfigurations/piabeynapip\",\r\n \"etag\": \"W/\\\"64e0f920-6078-45b3-bfab-8e56f559ed38\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/publicIPAddresses/piabeynapip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/virtualNetworks/piabeynavnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"piabeynafw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/azureFirewalls/piabeynafw\",\r\n \"etag\": \"W/\\\"f80b78b8-7962-4265-b69f-30fbac02911d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"piabeynapip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/azureFirewalls/piabeynafw/azureFirewallIpConfigurations/piabeynapip\",\r\n \"etag\": \"W/\\\"f80b78b8-7962-4265-b69f-30fbac02911d\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/publicIPAddresses/piabeynapip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/virtualNetworks/piabeynavnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"wvdTagTestFW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Off\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW/azureFirewallIpConfigurations/AzureFirewallIpConfiguration\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/publicIPAddresses/AzureFirewallPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/virtualNetworks/wvdTagTestVnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"NRC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW/networkRuleCollections/NRC1\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"NR1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.0.0/16\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"ARC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW/applicationRuleCollections/ARC1\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"AR1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*.ro\",\r\n \"*.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"Firewall-adig\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/azureFirewalls/Firewall-adig\",\r\n \"etag\": \"W/\\\"807e0e18-a8ba-4d0f-a377-c56292ae5ef1\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"IP\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/azureFirewalls/Firewall-adig/azureFirewallIpConfigurations/IP\",\r\n \"etag\": \"W/\\\"807e0e18-a8ba-4d0f-a377-c56292ae5ef1\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/publicIPAddresses/IP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/virtualNetworks/vnet-adig/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"sujith-fw1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/azureFirewalls/sujith-fw1\",\r\n \"etag\": \"W/\\\"eb3ebd84-d15d-4d66-8aec-0783f6d66152\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/azureFirewalls/sujith-fw1/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"eb3ebd84-d15d-4d66-8aec-0783f6d66152\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/centralUSE_Liz/providers/Microsoft.Network/publicIPAddresses/fsfs\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/virtualNetworks/sujith-vnet1/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/firewallPolicies/sujith-fp1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testFirewall3\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/azureFirewalls/testFirewall3\",\r\n \"etag\": \"W/\\\"6d464623-f3c9-41f8-a58d-7def3915cbd4\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/virtualHubs/ankapooTestHub\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.238.247\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testFirewall4\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest3/providers/Microsoft.Network/azureFirewalls/testFirewall4\",\r\n \"etag\": \"W/\\\"730d96bd-278a-47eb-923a-a42d32b6f761\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest3/providers/Microsoft.Network/virtualHubs/TestVirtualHub3\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.159.193\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy3\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testFW01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestFirewallPolicy/providers/Microsoft.Network/azureFirewalls/testFW01\",\r\n \"etag\": \"W/\\\"e7deb856-d89f-4d37-8452-a51e3410c6ce\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestFirewallPolicy/providers/Microsoft.Network/virtualHubs/FirewallPolicyTestHub\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"40.89.56.210\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFirewallPolicy1/providers/Microsoft.Network/firewallPolicies/testPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ankapooTestFW10\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestRG10/providers/Microsoft.Network/azureFirewalls/ankapooTestFW10\",\r\n \"etag\": \"W/\\\"c69b219e-893f-43e0-9c61-118ba551e15d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestRG10/providers/Microsoft.Network/virtualHubs/ankapooTestHub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestRG10/providers/Microsoft.Network/firewallPolicies/ankapooTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ankapooPolicyRefFW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooPolicyRefTestRG/providers/Microsoft.Network/azureFirewalls/ankapooPolicyRefFW\",\r\n \"etag\": \"W/\\\"d9606fe5-be14-4534-bd4c-a50193640625\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooPolicyRefTestRG/providers/Microsoft.Network/virtualHubs/ankapooPolicyRefVHub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/ankapooPolicyRefTestRG/providers/Microsoft.Network/firewallPolicies/ankapooTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"040ac58e-1f40-4ac1-8126-64cdada7eb2f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"040ac58e-1f40-4ac1-8126-64cdada7eb2f\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"040ac58e-1f40-4ac1-8126-64cdada7eb2f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/publicIPAddresses/azureFirewallPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"deepalFW01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan10/providers/Microsoft.Network/azureFirewalls/deepalFW01\",\r\n \"etag\": \"W/\\\"e36339cd-d2b9-4621-a5a9-7b3fde8222fa\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan10/providers/Microsoft.Network/virtualHubs/eastus2euap-7252019-18-58-19\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.227.154\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManager/providers/Microsoft.Network/firewallPolicies/maravTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-7312019-20-52-23\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan15/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-7312019-20-52-23\",\r\n \"etag\": \"W/\\\"42360aa2-27c1-4a48-953a-09e5720d1f98\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan15/providers/Microsoft.Network/virtualHubs/eastus2euap-7312019-20-52-23\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.1.13\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/isguBB01/providers/Microsoft.Network/firewallPolicies/FWPolicy27\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"fp01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan16/providers/Microsoft.Network/azureFirewalls/fp01\",\r\n \"etag\": \"W/\\\"88f8a7e1-6b25-425c-9fe8-614b96d1e302\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan16/providers/Microsoft.Network/virtualHubs/eastus2euap-812019-22-43-10\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.231.71\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManager/providers/Microsoft.Network/firewallPolicies/maravTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"fp02\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan18/providers/Microsoft.Network/azureFirewalls/fp02\",\r\n \"etag\": \"W/\\\"152af447-4d3d-40f3-8266-e27485c0b121\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan18/providers/Microsoft.Network/virtualHubs/eastus2euap-812019-23-19-11\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.153.27\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/SujithRG-EUAP/providers/Microsoft.Network/firewallPolicies/sujithFPwithRG7\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-7232019-22-43-16\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan7/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-7232019-22-43-16\",\r\n \"etag\": \"W/\\\"69b000e7-2d63-4177-bf7c-717fa64fb6e5\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan7/providers/Microsoft.Network/virtualHubs/eastus2euap-7232019-22-43-16\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy3\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"dmanesku_shoebox_throughput_2_firewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/virtualNetworks/dmanesku_shoebox_throughput_2-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"dmanesku_shoebox_throughput_3-firewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/virtualNetworks/dmanesku_shoebox_throughput_3-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall_e\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/publicIPAddresses/ps3edbe9005e\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/virtualNetworks/ps0fff3c7d84/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup4\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup4\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup4\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"52.253.226.50\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"girish01FW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"AzureFirewallIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW/azureFirewallIpConfigurations/AzureFirewallIpConfiguration\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/publicIPAddresses/AzureFirewallPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/virtualNetworks/girish01Vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"NRC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW/networkRuleCollections/NRC1\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"NR1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.0.0/16\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"ARC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW/applicationRuleCollections/ARC1\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"AR1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*.ro\",\r\n \"*.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-882019-23-30-41\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girishCBN_RG/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-882019-23-30-41\",\r\n \"etag\": \"W/\\\"766f294e-d895-4fac-aee4-f6963a9998b8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girishCBN_RG/providers/Microsoft.Network/virtualHubs/eastus2euap-882019-23-30-41\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/cf6dd6b5-8d66-42fd-85a9-108021552699/resourcegroups/LeahTestPolicy/providers/Microsoft.Network/firewallPolicies/PolicyWithAllRules\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"gTemplateTestFW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW/azureFirewallIpConfigurations/AzureFirewallIpConfiguration\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/publicIPAddresses/AzureFirewallPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/virtualNetworks/gTemplateTestVnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"NRC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW/networkRuleCollections/NRC1\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"NR1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.0.0/16\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"ARC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW/applicationRuleCollections/ARC1\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"AR1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*.fb.com\",\r\n \"*.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"ar2\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [\r\n \"WindowsUpdate\"\r\n ],\r\n \"targetFqdns\": [],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.SNAT.PrivateRanges\": \"IANAPrivateRanges\",\r\n \"Network.DNS.EnableProxy\": \"true\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.SNAT.PrivateRanges\": \"IANAPrivateRanges\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\",\r\n \"Network.DNS.EnableProxy\": \"true\",\r\n \"Network.DNS.Servers\": \"10.0.0.4\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.arstechnica.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\",\r\n \"443\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\",\r\n \"*google.com\",\r\n \"*azure.com\",\r\n \"*arstechnica.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"toServer\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/natRuleCollections/toServer\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"SSHtoServ\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server.contoso.com\",\r\n \"translatedPort\": \"22\",\r\n \"sourceAddresses\": [\r\n \"45.30.29.40\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.3.84\"\r\n ],\r\n \"destinationPorts\": [\r\n \"22\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/azureFirewallPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"RC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/applicationRuleCollections/RC1\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"R1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"www.google.com\",\r\n \"*github.com\",\r\n \"*blob.core.windows.net\",\r\n \"*table.core.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"9dea1cf8-1674-405b-9873-16026e4c8717\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.Servers\": \"8.8.8.8\",\r\n \"Network.DNS.EnableProxy\": \"true\"\r\n },\r\n \"managementIpConfiguration\": {\r\n \"name\": \"AzureFirewallMgmtIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/AzureFirewallMgmtIpConfiguration\",\r\n \"etag\": \"W/\\\"9dea1cf8-1674-405b-9873-16026e4c8717\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/dnsmgmtpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/dns-vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"9dea1cf8-1674-405b-9873-16026e4c8717\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.2.2.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/dnspip1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/dns-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"0658831b-e045-42c6-a0cb-9b9069f2624f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"0658831b-e045-42c6-a0cb-9b9069f2624f\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"0658831b-e045-42c6-a0cb-9b9069f2624f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/publicIPAddresses/azureFirewallPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"3a8cc7ad-242d-48c0-957b-822c4fb0b88b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"MgmtIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/MgmtIpConf\",\r\n \"etag\": \"W/\\\"3a8cc7ad-242d-48c0-957b-822c4fb0b88b\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/publicIPAddresses/AzureFirewallBvtMgmtPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/virtualNetworks/AzureFirewallvnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"3a8cc7ad-242d-48c0-957b-822c4fb0b88b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/publicIPAddresses/AzureFirewallBvtPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/virtualNetworks/AzureFirewallvnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_Hub01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/azureFirewalls/AzureFirewall_Hub01\",\r\n \"etag\": \"W/\\\"58b0b6b4-ac45-429c-b8ff-0263cea5f141\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/virtualHubs/Hub01\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.0.205\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/firewallPolicies/FWPolicy27\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_isgu03Hub\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/azureFirewalls/AzureFirewall_isgu03Hub\",\r\n \"etag\": \"W/\\\"37090e5c-4063-492d-8428-5b04d62034b8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/virtualHubs/isgu03Hub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/cf6dd6b5-8d66-42fd-85a9-108021552699/resourcegroups/LeahTestPolicy/providers/Microsoft.Network/firewallPolicies/PolicyWithHub\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_isguYair01Hub\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/azureFirewalls/AzureFirewall_isguYair01Hub\",\r\n \"etag\": \"W/\\\"4ff467dc-a029-4890-9d30-9fff15a8d1db\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/virtualHubs/isguYair01Hub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/firewallPolicies/fpTest1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_TestHub3\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/azureFirewalls/AzureFirewall_TestHub3\",\r\n \"etag\": \"W/\\\"0c0aea4f-5fc8-4880-af22-4a0ad210772e\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/virtualHubs/TestHub3\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/stmaneaFirewallManager/providers/Microsoft.Network/firewallPolicies/testPolicy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_TestHub4\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/azureFirewalls/AzureFirewall_TestHub4\",\r\n \"etag\": \"W/\\\"dcc7e692-9ad4-4c1e-a383-96e6cca3ac1d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/virtualHubs/TestHub4\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/stmaneaFirewallManager/providers/Microsoft.Network/firewallPolicies/testPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_TestHub6\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/azureFirewalls/AzureFirewall_TestHub6\",\r\n \"etag\": \"W/\\\"67099697-44a9-4fc9-8298-1c1e243fd0ec\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/virtualHubs/TestHub6\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/stmaneaFirewallManager/providers/Microsoft.Network/firewallPolicies/testPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"jiejwu-cbn\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/azureFirewalls/jiejwu-cbn\",\r\n \"etag\": \"W/\\\"50fbf0e9-1300-42af-94b2-112b79c514ad\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"jiejwu-cbn\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/azureFirewalls/jiejwu-cbn/azureFirewallIpConfigurations/jiejwu-cbn\",\r\n \"etag\": \"W/\\\"50fbf0e9-1300-42af-94b2-112b79c514ad\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/publicIPAddresses/jiejwu-cbn\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/virtualNetworks/jiejwu-cbn/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"test\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/azureFirewalls/jiejwu-cbn/applicationRuleCollections/test\",\r\n \"etag\": \"W/\\\"50fbf0e9-1300-42af-94b2-112b79c514ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"http\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"www.google.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"mssql\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sqldb1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"bing\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-892019-22-13-18\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/liyue/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-892019-22-13-18\",\r\n \"etag\": \"W/\\\"c485e6ff-3748-4de9-9ad4-ad55da74422b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/liyue/providers/Microsoft.Network/virtualHubs/eastus2euap-892019-22-13-18\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"90.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.230.115\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/liyue/providers/Microsoft.Network/firewallPolicies/testPolicy5\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_maravFirewallManagerCBN2vHub\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManagerCBN2RG/providers/Microsoft.Network/azureFirewalls/AzureFirewall_maravFirewallManagerCBN2vHub\",\r\n \"etag\": \"W/\\\"118ce7d3-6eff-436b-8821-44603775fb79\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManagerCBN2RG/providers/Microsoft.Network/virtualHubs/maravFirewallManagerCBN2vHub\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.1.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.153.30\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/maravFirewallManagerCBN2RG/providers/Microsoft.Network/firewallPolicies/maravFirewallManagerCBN2FirewallPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"piabeynafw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/azureFirewalls/piabeynafw\",\r\n \"etag\": \"W/\\\"87850159-cd39-473b-b9ad-84dc81072cbf\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\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\": \"piabeynapip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/azureFirewalls/piabeynafw/azureFirewallIpConfigurations/piabeynapip\",\r\n \"etag\": \"W/\\\"87850159-cd39-473b-b9ad-84dc81072cbf\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/publicIPAddresses/piabeynapip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/virtualNetworks/piabeynavnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"ps5891\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"vwan22azfw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/publicIPAddresses/Fwpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/virtualNetworks/HV_eastus2euap-9172019-_c6084b09-6aa1-4762-9020-5b48e308b287/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"allowAll\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw/networkRuleCollections/allowAll\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"allowInternet\",\r\n \"protocols\": [\r\n \"TCP\",\r\n \"ICMP\",\r\n \"UDP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"allowRdp\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw/natRuleCollections/allowRdp\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"allowRdp\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.12.0.4\",\r\n \"translatedPort\": \"3389\",\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.2.139\"\r\n ],\r\n \"destinationPorts\": [\r\n \"3390\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_rHub2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/azureFirewalls/AzureFirewall_rHub2\",\r\n \"etag\": \"W/\\\"b4a1effe-1c32-4ec3-9f7a-ddbb31bfd66f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/virtualHubs/rHub2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_rHub5\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/azureFirewalls/AzureFirewall_rHub5\",\r\n \"etag\": \"W/\\\"d093da65-867d-44b0-9364-6cec5ff1c1f0\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/virtualHubs/rHub5\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.225.89\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_rTestHub1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/azureFirewalls/AzureFirewall_rTestHub1\",\r\n \"etag\": \"W/\\\"276c43c9-09e5-4ce3-b2e6-c93e10199dd3\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/virtualHubs/rTestHub1\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.153.206\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManager/providers/Microsoft.Network/firewallPolicies/maravTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub11\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub11\",\r\n \"etag\": \"W/\\\"0378463c-5c2f-45c1-8a4a-640bd6f8a221\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub11\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.64.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.225.126\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub18\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub18\",\r\n \"etag\": \"W/\\\"5ee85626-a822-458e-8615-34ab14140ce9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub18\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub19\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub19\",\r\n \"etag\": \"W/\\\"5cc51059-9772-4a6c-afb3-192c8cb7c217\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub19\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub4\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub4\",\r\n \"etag\": \"W/\\\"15e61fa7-34b4-49c4-b924-153ed0cfecea\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub4\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.64.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.3.88\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub9\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub9\",\r\n \"etag\": \"W/\\\"0c3af043-f0eb-4f51-b12a-0ba7bdc71fa5\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub9\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN10\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN10\",\r\n \"etag\": \"W/\\\"3a169859-701e-499d-b293-371f926737d6\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN10\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.230.102\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN11\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN11\",\r\n \"etag\": \"W/\\\"2d183df7-a164-47a4-9ae0-c2a9f5fbf83a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN11\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.4.222\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN3\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN3\",\r\n \"etag\": \"W/\\\"95af3486-8b19-4206-8db5-536e09afcbb9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN3\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.16.255\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN5\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN5\",\r\n \"etag\": \"W/\\\"ca1ca9be-eafd-41b4-84dd-a70556b4c9af\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN5\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN6\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN6\",\r\n \"etag\": \"W/\\\"df352d09-1853-47fe-a098-c0ce6988e643\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN6\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN7\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN7\",\r\n \"etag\": \"W/\\\"60429276-65cb-4f88-9cda-7efc1e214463\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN7\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN8\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN8\",\r\n \"etag\": \"W/\\\"52a3628e-0cb5-422d-b711-33b66c1bf103\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN8\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN9\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN9\",\r\n \"etag\": \"W/\\\"54cfba8c-7dde-4f23-8d58-092473d22f2a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN9\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.224.58\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-vhubN1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-vhubN1\",\r\n \"etag\": \"W/\\\"4bd454e6-8420-43ed-a47d-4a730cc3a809\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-vhubN1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-vhubN2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-vhubN2\",\r\n \"etag\": \"W/\\\"fec7d4aa-bfe2-44df-98e5-b6858eb19bb8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-vhubN2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_SujithHub-EUAP\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/SujithRG-EUAP/providers/Microsoft.Network/azureFirewalls/AzureFirewall_SujithHub-EUAP\",\r\n \"etag\": \"W/\\\"3834f1ea-eee5-4c96-a997-ec870e486adf\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/SujithRG-EUAP/providers/Microsoft.Network/virtualHubs/SujithHub-EUAP\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/SujithRG-EUAP/providers/Microsoft.Network/firewallPolicies/sujithPOlicyWithRG\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"tejas-test-fw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/azureFirewalls/tejas-test-fw\",\r\n \"etag\": \"W/\\\"728afdce-1848-49b8-b0c5-8d1d33008dba\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\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\": \"tejas-test-fwip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/azureFirewalls/tejas-test-fw/azureFirewallIpConfigurations/tejas-test-fwip\",\r\n \"etag\": \"W/\\\"728afdce-1848-49b8-b0c5-8d1d33008dba\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/publicIPAddresses/tejas-test-fwip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/virtualNetworks/tejas-test-fwvnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"httpsrc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/azureFirewalls/tejas-test-fw/natRuleCollections/httpsrc\",\r\n \"etag\": \"W/\\\"728afdce-1848-49b8-b0c5-8d1d33008dba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"https\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.0.2.5\",\r\n \"translatedPort\": \"80\",\r\n \"sourceAddresses\": [\r\n \"167.220.24.48\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.21.80\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"testfw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\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\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/publicIPAddresses/azureFirewalls-ip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/testName\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_isgu03Hub_1aa8240e-a44b-45f2-9c5f-9ca11a7623a6/providers/Microsoft.Network/publicIPAddresses/AzFwPip\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/testName1\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/EastUs2Liz/providers/Microsoft.Network/publicIPAddresses/newIp\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/testName2\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ipgroup_eastus2euap/providers/Microsoft.Network/publicIPAddresses/pscdcdd48f82\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"aaddf684-3dca-4977-bd6a-15a97a911eb5\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"aaddf684-3dca-4977-bd6a-15a97a911eb5\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/publicIPAddresses/psf63c308623\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/virtualNetworks/psa0280fdec0/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"1bf1c355-12f5-41f2-9c2d-16547718d6d0\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"1bf1c355-12f5-41f2-9c2d-16547718d6d0\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/publicIPAddresses/ps40c897b3cc\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/virtualNetworks/ps2dc56f63d3/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"85f19274-1c06-423d-b070-e67527762e5a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"85f19274-1c06-423d-b070-e67527762e5a\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/publicIPAddresses/pse77e054b86\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/virtualNetworks/pscbfeebbb2d/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/publicIPAddresses/psa432cd78fe\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/virtualNetworks/ps258f72e844/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/23\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-5\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-7\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-9\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-11\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-13\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-15\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-17\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-19\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-21\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-23\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-25\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-27\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-29\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-31\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-33\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-35\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-37\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-39\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-41\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-43\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-45\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-47\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-49\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"52.253.153.213\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/publicIPAddresses/ps4a1e31b38a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/virtualNetworks/psf6475698bb/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/23\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-5\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-7\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-9\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-11\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-13\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-15\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-17\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-19\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"20.39.17.23\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/publicIPAddresses/ps35b11a953e\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/virtualNetworks/ps9cd83d5f0e/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/23\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-5\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-7\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-9\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-11\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-13\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-15\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-17\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-19\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-21\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-23\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-25\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-27\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-29\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-31\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-33\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-35\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-37\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-39\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-41\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-43\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-45\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-47\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-49\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-51\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-53\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-55\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-57\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-59\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-61\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-63\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-65\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-67\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-69\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-71\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-73\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-75\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-77\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-79\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-81\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-83\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-85\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-87\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-89\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-91\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-93\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-95\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-97\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-99\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"20.39.18.100\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/azureFirewalls?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9henVyZUZpcmV3YWxscz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c375726b-f7ad-4a53-989b-1db964ea551d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "d55406a3-d4f0-4c2d-82c9-2f4c2af986fc", + "ca3094d9-8803-482f-b59b-af322409658c", + "cd62f59f-74c5-4141-8f88-c83eff3b49d2", + "70d6d056-54c1-458e-ae54-1513e155ab59" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "dcf01917-e8a9-49de-8595-4f16936234fb" + ], + "x-ms-correlation-request-id": [ + "dcf01917-e8a9-49de-8595-4f16936234fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T042017Z:dcf01917-e8a9-49de-8595-4f16936234fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:20:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "165830" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"1068f573-aea0-478a-80a9-cd9f92867469\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"1068f573-aea0-478a-80a9-cd9f92867469\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/firewallPolicies/firewallPolicy1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"jashwanth-fw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/azureFirewalls/jashwanth-fw\",\r\n \"etag\": \"W/\\\"a2b1de0c-6e19-4cda-87d3-89a80a87658b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\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\": \"jashwanth-fw-public-ip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/azureFirewalls/jashwanth-fw/azureFirewallIpConfigurations/jashwanth-fw-public-ip\",\r\n \"etag\": \"W/\\\"a2b1de0c-6e19-4cda-87d3-89a80a87658b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/publicIPAddresses/jashwanth-fw-public-ip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/virtualNetworks/jashwanth-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"piabeynafw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/azureFirewalls/piabeynafw\",\r\n \"etag\": \"W/\\\"64e0f920-6078-45b3-bfab-8e56f559ed38\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"piabeynapip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/azureFirewalls/piabeynafw/azureFirewallIpConfigurations/piabeynapip\",\r\n \"etag\": \"W/\\\"64e0f920-6078-45b3-bfab-8e56f559ed38\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/publicIPAddresses/piabeynapip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/virtualNetworks/piabeynavnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"piabeynafw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/azureFirewalls/piabeynafw\",\r\n \"etag\": \"W/\\\"f80b78b8-7962-4265-b69f-30fbac02911d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"piabeynapip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/azureFirewalls/piabeynafw/azureFirewallIpConfigurations/piabeynapip\",\r\n \"etag\": \"W/\\\"f80b78b8-7962-4265-b69f-30fbac02911d\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/publicIPAddresses/piabeynapip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/virtualNetworks/piabeynavnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"wvdTagTestFW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Off\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW/azureFirewallIpConfigurations/AzureFirewallIpConfiguration\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/publicIPAddresses/AzureFirewallPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/virtualNetworks/wvdTagTestVnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"NRC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW/networkRuleCollections/NRC1\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"NR1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.0.0/16\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"ARC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW/applicationRuleCollections/ARC1\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"AR1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*.ro\",\r\n \"*.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"Firewall-adig\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/azureFirewalls/Firewall-adig\",\r\n \"etag\": \"W/\\\"807e0e18-a8ba-4d0f-a377-c56292ae5ef1\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"IP\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/azureFirewalls/Firewall-adig/azureFirewallIpConfigurations/IP\",\r\n \"etag\": \"W/\\\"807e0e18-a8ba-4d0f-a377-c56292ae5ef1\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/publicIPAddresses/IP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/virtualNetworks/vnet-adig/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"sujith-fw1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/azureFirewalls/sujith-fw1\",\r\n \"etag\": \"W/\\\"eb3ebd84-d15d-4d66-8aec-0783f6d66152\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/azureFirewalls/sujith-fw1/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"eb3ebd84-d15d-4d66-8aec-0783f6d66152\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/centralUSE_Liz/providers/Microsoft.Network/publicIPAddresses/fsfs\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/virtualNetworks/sujith-vnet1/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/firewallPolicies/sujith-fp1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testFirewall3\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/azureFirewalls/testFirewall3\",\r\n \"etag\": \"W/\\\"6d464623-f3c9-41f8-a58d-7def3915cbd4\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/virtualHubs/ankapooTestHub\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.238.247\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testFirewall4\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest3/providers/Microsoft.Network/azureFirewalls/testFirewall4\",\r\n \"etag\": \"W/\\\"730d96bd-278a-47eb-923a-a42d32b6f761\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest3/providers/Microsoft.Network/virtualHubs/TestVirtualHub3\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.159.193\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy3\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testFW01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestFirewallPolicy/providers/Microsoft.Network/azureFirewalls/testFW01\",\r\n \"etag\": \"W/\\\"e7deb856-d89f-4d37-8452-a51e3410c6ce\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestFirewallPolicy/providers/Microsoft.Network/virtualHubs/FirewallPolicyTestHub\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"40.89.56.210\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFirewallPolicy1/providers/Microsoft.Network/firewallPolicies/testPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ankapooTestFW10\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestRG10/providers/Microsoft.Network/azureFirewalls/ankapooTestFW10\",\r\n \"etag\": \"W/\\\"c69b219e-893f-43e0-9c61-118ba551e15d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestRG10/providers/Microsoft.Network/virtualHubs/ankapooTestHub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestRG10/providers/Microsoft.Network/firewallPolicies/ankapooTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ankapooPolicyRefFW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooPolicyRefTestRG/providers/Microsoft.Network/azureFirewalls/ankapooPolicyRefFW\",\r\n \"etag\": \"W/\\\"d9606fe5-be14-4534-bd4c-a50193640625\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooPolicyRefTestRG/providers/Microsoft.Network/virtualHubs/ankapooPolicyRefVHub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/ankapooPolicyRefTestRG/providers/Microsoft.Network/firewallPolicies/ankapooTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"040ac58e-1f40-4ac1-8126-64cdada7eb2f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"040ac58e-1f40-4ac1-8126-64cdada7eb2f\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"040ac58e-1f40-4ac1-8126-64cdada7eb2f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/publicIPAddresses/azureFirewallPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"deepalFW01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan10/providers/Microsoft.Network/azureFirewalls/deepalFW01\",\r\n \"etag\": \"W/\\\"e36339cd-d2b9-4621-a5a9-7b3fde8222fa\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan10/providers/Microsoft.Network/virtualHubs/eastus2euap-7252019-18-58-19\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.227.154\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManager/providers/Microsoft.Network/firewallPolicies/maravTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-7312019-20-52-23\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan15/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-7312019-20-52-23\",\r\n \"etag\": \"W/\\\"42360aa2-27c1-4a48-953a-09e5720d1f98\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan15/providers/Microsoft.Network/virtualHubs/eastus2euap-7312019-20-52-23\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.1.13\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/isguBB01/providers/Microsoft.Network/firewallPolicies/FWPolicy27\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"fp01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan16/providers/Microsoft.Network/azureFirewalls/fp01\",\r\n \"etag\": \"W/\\\"88f8a7e1-6b25-425c-9fe8-614b96d1e302\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan16/providers/Microsoft.Network/virtualHubs/eastus2euap-812019-22-43-10\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.231.71\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManager/providers/Microsoft.Network/firewallPolicies/maravTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"fp02\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan18/providers/Microsoft.Network/azureFirewalls/fp02\",\r\n \"etag\": \"W/\\\"152af447-4d3d-40f3-8266-e27485c0b121\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan18/providers/Microsoft.Network/virtualHubs/eastus2euap-812019-23-19-11\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.153.27\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/SujithRG-EUAP/providers/Microsoft.Network/firewallPolicies/sujithFPwithRG7\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-7232019-22-43-16\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan7/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-7232019-22-43-16\",\r\n \"etag\": \"W/\\\"69b000e7-2d63-4177-bf7c-717fa64fb6e5\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan7/providers/Microsoft.Network/virtualHubs/eastus2euap-7232019-22-43-16\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy3\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"dmanesku_shoebox_throughput_2_firewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/virtualNetworks/dmanesku_shoebox_throughput_2-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"dmanesku_shoebox_throughput_3-firewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/virtualNetworks/dmanesku_shoebox_throughput_3-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall_e\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/publicIPAddresses/ps3edbe9005e\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/virtualNetworks/ps0fff3c7d84/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup4\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup4\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup4\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"52.253.226.50\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"girish01FW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"AzureFirewallIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW/azureFirewallIpConfigurations/AzureFirewallIpConfiguration\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/publicIPAddresses/AzureFirewallPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/virtualNetworks/girish01Vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"NRC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW/networkRuleCollections/NRC1\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"NR1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.0.0/16\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"ARC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW/applicationRuleCollections/ARC1\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"AR1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*.ro\",\r\n \"*.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-882019-23-30-41\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girishCBN_RG/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-882019-23-30-41\",\r\n \"etag\": \"W/\\\"766f294e-d895-4fac-aee4-f6963a9998b8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girishCBN_RG/providers/Microsoft.Network/virtualHubs/eastus2euap-882019-23-30-41\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/cf6dd6b5-8d66-42fd-85a9-108021552699/resourcegroups/LeahTestPolicy/providers/Microsoft.Network/firewallPolicies/PolicyWithAllRules\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"gTemplateTestFW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW/azureFirewallIpConfigurations/AzureFirewallIpConfiguration\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/publicIPAddresses/AzureFirewallPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/virtualNetworks/gTemplateTestVnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"NRC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW/networkRuleCollections/NRC1\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"NR1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.0.0/16\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"ARC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW/applicationRuleCollections/ARC1\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"AR1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*.fb.com\",\r\n \"*.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"ar2\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [\r\n \"WindowsUpdate\"\r\n ],\r\n \"targetFqdns\": [],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.SNAT.PrivateRanges\": \"IANAPrivateRanges\",\r\n \"Network.DNS.EnableProxy\": \"true\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.SNAT.PrivateRanges\": \"IANAPrivateRanges\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\",\r\n \"Network.DNS.EnableProxy\": \"true\",\r\n \"Network.DNS.Servers\": \"10.0.0.4\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.arstechnica.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\",\r\n \"443\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\",\r\n \"*google.com\",\r\n \"*azure.com\",\r\n \"*arstechnica.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"toServer\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/natRuleCollections/toServer\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"SSHtoServ\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server.contoso.com\",\r\n \"translatedPort\": \"22\",\r\n \"sourceAddresses\": [\r\n \"45.30.29.40\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.3.84\"\r\n ],\r\n \"destinationPorts\": [\r\n \"22\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/azureFirewallPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"RC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/applicationRuleCollections/RC1\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"R1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"www.google.com\",\r\n \"*github.com\",\r\n \"*blob.core.windows.net\",\r\n \"*table.core.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"9dea1cf8-1674-405b-9873-16026e4c8717\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.Servers\": \"8.8.8.8\",\r\n \"Network.DNS.EnableProxy\": \"true\"\r\n },\r\n \"managementIpConfiguration\": {\r\n \"name\": \"AzureFirewallMgmtIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/AzureFirewallMgmtIpConfiguration\",\r\n \"etag\": \"W/\\\"9dea1cf8-1674-405b-9873-16026e4c8717\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/dnsmgmtpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/dns-vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"9dea1cf8-1674-405b-9873-16026e4c8717\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.2.2.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/dnspip1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/dns-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"0658831b-e045-42c6-a0cb-9b9069f2624f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"0658831b-e045-42c6-a0cb-9b9069f2624f\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"0658831b-e045-42c6-a0cb-9b9069f2624f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/publicIPAddresses/azureFirewallPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"3a8cc7ad-242d-48c0-957b-822c4fb0b88b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"MgmtIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/MgmtIpConf\",\r\n \"etag\": \"W/\\\"3a8cc7ad-242d-48c0-957b-822c4fb0b88b\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/publicIPAddresses/AzureFirewallBvtMgmtPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/virtualNetworks/AzureFirewallvnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"3a8cc7ad-242d-48c0-957b-822c4fb0b88b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/publicIPAddresses/AzureFirewallBvtPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/virtualNetworks/AzureFirewallvnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_Hub01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/azureFirewalls/AzureFirewall_Hub01\",\r\n \"etag\": \"W/\\\"58b0b6b4-ac45-429c-b8ff-0263cea5f141\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/virtualHubs/Hub01\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.0.205\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/firewallPolicies/FWPolicy27\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_isgu03Hub\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/azureFirewalls/AzureFirewall_isgu03Hub\",\r\n \"etag\": \"W/\\\"37090e5c-4063-492d-8428-5b04d62034b8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/virtualHubs/isgu03Hub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/cf6dd6b5-8d66-42fd-85a9-108021552699/resourcegroups/LeahTestPolicy/providers/Microsoft.Network/firewallPolicies/PolicyWithHub\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_isguYair01Hub\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/azureFirewalls/AzureFirewall_isguYair01Hub\",\r\n \"etag\": \"W/\\\"4ff467dc-a029-4890-9d30-9fff15a8d1db\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/virtualHubs/isguYair01Hub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/firewallPolicies/fpTest1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_TestHub3\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/azureFirewalls/AzureFirewall_TestHub3\",\r\n \"etag\": \"W/\\\"0c0aea4f-5fc8-4880-af22-4a0ad210772e\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/virtualHubs/TestHub3\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/stmaneaFirewallManager/providers/Microsoft.Network/firewallPolicies/testPolicy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_TestHub4\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/azureFirewalls/AzureFirewall_TestHub4\",\r\n \"etag\": \"W/\\\"dcc7e692-9ad4-4c1e-a383-96e6cca3ac1d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/virtualHubs/TestHub4\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/stmaneaFirewallManager/providers/Microsoft.Network/firewallPolicies/testPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_TestHub6\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/azureFirewalls/AzureFirewall_TestHub6\",\r\n \"etag\": \"W/\\\"67099697-44a9-4fc9-8298-1c1e243fd0ec\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/virtualHubs/TestHub6\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/stmaneaFirewallManager/providers/Microsoft.Network/firewallPolicies/testPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"jiejwu-cbn\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/azureFirewalls/jiejwu-cbn\",\r\n \"etag\": \"W/\\\"50fbf0e9-1300-42af-94b2-112b79c514ad\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"jiejwu-cbn\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/azureFirewalls/jiejwu-cbn/azureFirewallIpConfigurations/jiejwu-cbn\",\r\n \"etag\": \"W/\\\"50fbf0e9-1300-42af-94b2-112b79c514ad\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/publicIPAddresses/jiejwu-cbn\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/virtualNetworks/jiejwu-cbn/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"test\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/azureFirewalls/jiejwu-cbn/applicationRuleCollections/test\",\r\n \"etag\": \"W/\\\"50fbf0e9-1300-42af-94b2-112b79c514ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"http\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"www.google.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"mssql\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sqldb1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"bing\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-892019-22-13-18\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/liyue/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-892019-22-13-18\",\r\n \"etag\": \"W/\\\"c485e6ff-3748-4de9-9ad4-ad55da74422b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/liyue/providers/Microsoft.Network/virtualHubs/eastus2euap-892019-22-13-18\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"90.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.230.115\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/liyue/providers/Microsoft.Network/firewallPolicies/testPolicy5\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_maravFirewallManagerCBN2vHub\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManagerCBN2RG/providers/Microsoft.Network/azureFirewalls/AzureFirewall_maravFirewallManagerCBN2vHub\",\r\n \"etag\": \"W/\\\"118ce7d3-6eff-436b-8821-44603775fb79\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManagerCBN2RG/providers/Microsoft.Network/virtualHubs/maravFirewallManagerCBN2vHub\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.1.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.153.30\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/maravFirewallManagerCBN2RG/providers/Microsoft.Network/firewallPolicies/maravFirewallManagerCBN2FirewallPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"piabeynafw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/azureFirewalls/piabeynafw\",\r\n \"etag\": \"W/\\\"87850159-cd39-473b-b9ad-84dc81072cbf\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\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\": \"piabeynapip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/azureFirewalls/piabeynafw/azureFirewallIpConfigurations/piabeynapip\",\r\n \"etag\": \"W/\\\"87850159-cd39-473b-b9ad-84dc81072cbf\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/publicIPAddresses/piabeynapip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/virtualNetworks/piabeynavnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"ps5891\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"vwan22azfw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/publicIPAddresses/Fwpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/virtualNetworks/HV_eastus2euap-9172019-_c6084b09-6aa1-4762-9020-5b48e308b287/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"allowAll\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw/networkRuleCollections/allowAll\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"allowInternet\",\r\n \"protocols\": [\r\n \"TCP\",\r\n \"ICMP\",\r\n \"UDP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"allowRdp\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw/natRuleCollections/allowRdp\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"allowRdp\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.12.0.4\",\r\n \"translatedPort\": \"3389\",\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.2.139\"\r\n ],\r\n \"destinationPorts\": [\r\n \"3390\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_rHub2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/azureFirewalls/AzureFirewall_rHub2\",\r\n \"etag\": \"W/\\\"b4a1effe-1c32-4ec3-9f7a-ddbb31bfd66f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/virtualHubs/rHub2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_rHub5\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/azureFirewalls/AzureFirewall_rHub5\",\r\n \"etag\": \"W/\\\"d093da65-867d-44b0-9364-6cec5ff1c1f0\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/virtualHubs/rHub5\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.225.89\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_rTestHub1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/azureFirewalls/AzureFirewall_rTestHub1\",\r\n \"etag\": \"W/\\\"276c43c9-09e5-4ce3-b2e6-c93e10199dd3\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/virtualHubs/rTestHub1\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.153.206\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManager/providers/Microsoft.Network/firewallPolicies/maravTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub11\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub11\",\r\n \"etag\": \"W/\\\"0378463c-5c2f-45c1-8a4a-640bd6f8a221\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub11\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.64.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.225.126\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub18\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub18\",\r\n \"etag\": \"W/\\\"5ee85626-a822-458e-8615-34ab14140ce9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub18\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub19\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub19\",\r\n \"etag\": \"W/\\\"5cc51059-9772-4a6c-afb3-192c8cb7c217\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub19\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub4\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub4\",\r\n \"etag\": \"W/\\\"15e61fa7-34b4-49c4-b924-153ed0cfecea\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub4\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.64.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.3.88\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub9\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub9\",\r\n \"etag\": \"W/\\\"0c3af043-f0eb-4f51-b12a-0ba7bdc71fa5\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub9\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN10\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN10\",\r\n \"etag\": \"W/\\\"3a169859-701e-499d-b293-371f926737d6\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN10\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.230.102\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN11\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN11\",\r\n \"etag\": \"W/\\\"2d183df7-a164-47a4-9ae0-c2a9f5fbf83a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN11\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.4.222\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN3\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN3\",\r\n \"etag\": \"W/\\\"95af3486-8b19-4206-8db5-536e09afcbb9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN3\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.16.255\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN5\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN5\",\r\n \"etag\": \"W/\\\"ca1ca9be-eafd-41b4-84dd-a70556b4c9af\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN5\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN6\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN6\",\r\n \"etag\": \"W/\\\"df352d09-1853-47fe-a098-c0ce6988e643\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN6\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN7\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN7\",\r\n \"etag\": \"W/\\\"60429276-65cb-4f88-9cda-7efc1e214463\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN7\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN8\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN8\",\r\n \"etag\": \"W/\\\"52a3628e-0cb5-422d-b711-33b66c1bf103\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN8\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN9\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN9\",\r\n \"etag\": \"W/\\\"54cfba8c-7dde-4f23-8d58-092473d22f2a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN9\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.224.58\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-vhubN1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-vhubN1\",\r\n \"etag\": \"W/\\\"4bd454e6-8420-43ed-a47d-4a730cc3a809\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-vhubN1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-vhubN2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-vhubN2\",\r\n \"etag\": \"W/\\\"fec7d4aa-bfe2-44df-98e5-b6858eb19bb8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-vhubN2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_SujithHub-EUAP\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/SujithRG-EUAP/providers/Microsoft.Network/azureFirewalls/AzureFirewall_SujithHub-EUAP\",\r\n \"etag\": \"W/\\\"3834f1ea-eee5-4c96-a997-ec870e486adf\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/SujithRG-EUAP/providers/Microsoft.Network/virtualHubs/SujithHub-EUAP\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/SujithRG-EUAP/providers/Microsoft.Network/firewallPolicies/sujithPOlicyWithRG\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"tejas-test-fw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/azureFirewalls/tejas-test-fw\",\r\n \"etag\": \"W/\\\"728afdce-1848-49b8-b0c5-8d1d33008dba\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\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\": \"tejas-test-fwip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/azureFirewalls/tejas-test-fw/azureFirewallIpConfigurations/tejas-test-fwip\",\r\n \"etag\": \"W/\\\"728afdce-1848-49b8-b0c5-8d1d33008dba\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/publicIPAddresses/tejas-test-fwip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/virtualNetworks/tejas-test-fwvnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"httpsrc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/azureFirewalls/tejas-test-fw/natRuleCollections/httpsrc\",\r\n \"etag\": \"W/\\\"728afdce-1848-49b8-b0c5-8d1d33008dba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"https\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.0.2.5\",\r\n \"translatedPort\": \"80\",\r\n \"sourceAddresses\": [\r\n \"167.220.24.48\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.21.80\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"testfw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\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\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/publicIPAddresses/azureFirewalls-ip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/testName\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_isgu03Hub_1aa8240e-a44b-45f2-9c5f-9ca11a7623a6/providers/Microsoft.Network/publicIPAddresses/AzFwPip\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/testName1\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/EastUs2Liz/providers/Microsoft.Network/publicIPAddresses/newIp\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/testName2\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ipgroup_eastus2euap/providers/Microsoft.Network/publicIPAddresses/pscdcdd48f82\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"aaddf684-3dca-4977-bd6a-15a97a911eb5\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"aaddf684-3dca-4977-bd6a-15a97a911eb5\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/publicIPAddresses/psf63c308623\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/virtualNetworks/psa0280fdec0/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"1bf1c355-12f5-41f2-9c2d-16547718d6d0\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"1bf1c355-12f5-41f2-9c2d-16547718d6d0\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/publicIPAddresses/ps40c897b3cc\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/virtualNetworks/ps2dc56f63d3/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"85f19274-1c06-423d-b070-e67527762e5a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"85f19274-1c06-423d-b070-e67527762e5a\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/publicIPAddresses/pse77e054b86\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/virtualNetworks/pscbfeebbb2d/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/publicIPAddresses/psa432cd78fe\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/virtualNetworks/ps258f72e844/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/23\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-5\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-7\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-9\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-11\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-13\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-15\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-17\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-19\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-21\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-23\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-25\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-27\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-29\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-31\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-33\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-35\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-37\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-39\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-41\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-43\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-45\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-47\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-49\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"52.253.153.213\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/publicIPAddresses/ps4a1e31b38a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/virtualNetworks/psf6475698bb/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/23\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-5\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-7\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-9\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-11\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-13\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-15\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-17\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-19\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"20.39.17.23\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/publicIPAddresses/ps35b11a953e\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/virtualNetworks/ps9cd83d5f0e/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/23\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-5\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-7\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-9\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-11\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-13\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-15\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-17\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-19\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-21\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-23\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-25\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-27\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-29\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-31\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-33\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-35\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-37\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-39\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-41\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-43\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-45\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-47\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-49\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-51\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-53\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-55\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-57\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-59\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-61\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-63\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-65\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-67\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-69\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-71\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-73\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-75\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-77\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-79\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-81\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-83\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-85\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-87\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-89\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-91\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-93\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-95\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-97\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-99\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"20.39.18.100\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/azureFirewalls?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9henVyZUZpcmV3YWxscz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50b0413b-f416-4927-bd10-b35c1ce00893" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "fcd8de5b-896f-46b2-aac2-ffdac4159e41", + "2493e006-9b07-4cc3-931c-3ada5f12ddc6", + "d6e2ebbb-b97e-4eb9-b344-78b29b8d461d", + "19a3beef-09bd-4d71-b837-259f05928deb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "b423c15b-69fc-40fe-b999-6bb85e053faa" + ], + "x-ms-correlation-request-id": [ + "b423c15b-69fc-40fe-b999-6bb85e053faa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T042018Z:b423c15b-69fc-40fe-b999-6bb85e053faa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:20:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "165830" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"1068f573-aea0-478a-80a9-cd9f92867469\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"1068f573-aea0-478a-80a9-cd9f92867469\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fp01testRG/providers/Microsoft.Network/firewallPolicies/firewallPolicy1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"jashwanth-fw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/azureFirewalls/jashwanth-fw\",\r\n \"etag\": \"W/\\\"a2b1de0c-6e19-4cda-87d3-89a80a87658b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\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\": \"jashwanth-fw-public-ip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/azureFirewalls/jashwanth-fw/azureFirewallIpConfigurations/jashwanth-fw-public-ip\",\r\n \"etag\": \"W/\\\"a2b1de0c-6e19-4cda-87d3-89a80a87658b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/publicIPAddresses/jashwanth-fw-public-ip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jashwanth-rg/providers/Microsoft.Network/virtualNetworks/jashwanth-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"piabeynafw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/azureFirewalls/piabeynafw\",\r\n \"etag\": \"W/\\\"64e0f920-6078-45b3-bfab-8e56f559ed38\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"piabeynapip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/azureFirewalls/piabeynafw/azureFirewallIpConfigurations/piabeynapip\",\r\n \"etag\": \"W/\\\"64e0f920-6078-45b3-bfab-8e56f559ed38\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/publicIPAddresses/piabeynapip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynalogging/providers/Microsoft.Network/virtualNetworks/piabeynavnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"piabeynafw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/azureFirewalls/piabeynafw\",\r\n \"etag\": \"W/\\\"f80b78b8-7962-4265-b69f-30fbac02911d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"piabeynapip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/azureFirewalls/piabeynafw/azureFirewallIpConfigurations/piabeynapip\",\r\n \"etag\": \"W/\\\"f80b78b8-7962-4265-b69f-30fbac02911d\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/publicIPAddresses/piabeynapip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynatestalerting/providers/Microsoft.Network/virtualNetworks/piabeynavnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"wvdTagTestFW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Off\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW/azureFirewallIpConfigurations/AzureFirewallIpConfiguration\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/publicIPAddresses/AzureFirewallPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/virtualNetworks/wvdTagTestVnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"NRC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW/networkRuleCollections/NRC1\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"NR1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.0.0/16\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"ARC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/wvdTagTestRG/providers/Microsoft.Network/azureFirewalls/wvdTagTestFW/applicationRuleCollections/ARC1\",\r\n \"etag\": \"W/\\\"eacfe0ab-d5ec-4eff-9b75-65ae0f84dc3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"AR1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*.ro\",\r\n \"*.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"Firewall-adig\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/azureFirewalls/Firewall-adig\",\r\n \"etag\": \"W/\\\"807e0e18-a8ba-4d0f-a377-c56292ae5ef1\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"IP\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/azureFirewalls/Firewall-adig/azureFirewallIpConfigurations/IP\",\r\n \"etag\": \"W/\\\"807e0e18-a8ba-4d0f-a377-c56292ae5ef1\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/publicIPAddresses/IP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/adig-test/providers/Microsoft.Network/virtualNetworks/vnet-adig/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"sujith-fw1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/azureFirewalls/sujith-fw1\",\r\n \"etag\": \"W/\\\"eb3ebd84-d15d-4d66-8aec-0783f6d66152\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Deny\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/azureFirewalls/sujith-fw1/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"eb3ebd84-d15d-4d66-8aec-0783f6d66152\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/centralUSE_Liz/providers/Microsoft.Network/publicIPAddresses/fsfs\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/virtualNetworks/sujith-vnet1/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/firewallPolicies/sujith-fp1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testFirewall3\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/azureFirewalls/testFirewall3\",\r\n \"etag\": \"W/\\\"6d464623-f3c9-41f8-a58d-7def3915cbd4\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/virtualHubs/ankapooTestHub\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.238.247\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testFirewall4\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest3/providers/Microsoft.Network/azureFirewalls/testFirewall4\",\r\n \"etag\": \"W/\\\"730d96bd-278a-47eb-923a-a42d32b6f761\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest3/providers/Microsoft.Network/virtualHubs/TestVirtualHub3\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.159.193\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy3\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testFW01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestFirewallPolicy/providers/Microsoft.Network/azureFirewalls/testFW01\",\r\n \"etag\": \"W/\\\"e7deb856-d89f-4d37-8452-a51e3410c6ce\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestFirewallPolicy/providers/Microsoft.Network/virtualHubs/FirewallPolicyTestHub\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"40.89.56.210\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFirewallPolicy1/providers/Microsoft.Network/firewallPolicies/testPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ankapooTestFW10\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestRG10/providers/Microsoft.Network/azureFirewalls/ankapooTestFW10\",\r\n \"etag\": \"W/\\\"c69b219e-893f-43e0-9c61-118ba551e15d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestRG10/providers/Microsoft.Network/virtualHubs/ankapooTestHub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooTestRG10/providers/Microsoft.Network/firewallPolicies/ankapooTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ankapooPolicyRefFW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooPolicyRefTestRG/providers/Microsoft.Network/azureFirewalls/ankapooPolicyRefFW\",\r\n \"etag\": \"W/\\\"d9606fe5-be14-4534-bd4c-a50193640625\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooPolicyRefTestRG/providers/Microsoft.Network/virtualHubs/ankapooPolicyRefVHub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/ankapooPolicyRefTestRG/providers/Microsoft.Network/firewallPolicies/ankapooTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"040ac58e-1f40-4ac1-8126-64cdada7eb2f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"040ac58e-1f40-4ac1-8126-64cdada7eb2f\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"040ac58e-1f40-4ac1-8126-64cdada7eb2f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/publicIPAddresses/azureFirewallPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/AzFwBVTDataPathAppRuleForcedTunneling/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"deepalFW01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan10/providers/Microsoft.Network/azureFirewalls/deepalFW01\",\r\n \"etag\": \"W/\\\"e36339cd-d2b9-4621-a5a9-7b3fde8222fa\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan10/providers/Microsoft.Network/virtualHubs/eastus2euap-7252019-18-58-19\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.227.154\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManager/providers/Microsoft.Network/firewallPolicies/maravTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-7312019-20-52-23\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan15/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-7312019-20-52-23\",\r\n \"etag\": \"W/\\\"42360aa2-27c1-4a48-953a-09e5720d1f98\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan15/providers/Microsoft.Network/virtualHubs/eastus2euap-7312019-20-52-23\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.1.13\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/isguBB01/providers/Microsoft.Network/firewallPolicies/FWPolicy27\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"fp01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan16/providers/Microsoft.Network/azureFirewalls/fp01\",\r\n \"etag\": \"W/\\\"88f8a7e1-6b25-425c-9fe8-614b96d1e302\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan16/providers/Microsoft.Network/virtualHubs/eastus2euap-812019-22-43-10\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.231.71\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManager/providers/Microsoft.Network/firewallPolicies/maravTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"fp02\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan18/providers/Microsoft.Network/azureFirewalls/fp02\",\r\n \"etag\": \"W/\\\"152af447-4d3d-40f3-8266-e27485c0b121\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan18/providers/Microsoft.Network/virtualHubs/eastus2euap-812019-23-19-11\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.153.27\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/SujithRG-EUAP/providers/Microsoft.Network/firewallPolicies/sujithFPwithRG7\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-7232019-22-43-16\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan7/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-7232019-22-43-16\",\r\n \"etag\": \"W/\\\"69b000e7-2d63-4177-bf7c-717fa64fb6e5\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dedharvwan7/providers/Microsoft.Network/virtualHubs/eastus2euap-7232019-22-43-16\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy3\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"dmanesku_shoebox_throughput_2_firewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/virtualNetworks/dmanesku_shoebox_throughput_2-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_2/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_2_firewall/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"7528942c-f200-49c6-bd9d-182aac7a92cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"dmanesku_shoebox_throughput_3-firewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/virtualNetworks/dmanesku_shoebox_throughput_3-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/dmanesku_shoebox_throughput_3/providers/Microsoft.Network/azureFirewalls/dmanesku_shoebox_throughput_3-firewall/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"3e164cb5-e482-4b95-b5a7-b0002d20019c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall_e\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/publicIPAddresses/ps3edbe9005e\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/virtualNetworks/ps0fff3c7d84/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup4\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup4\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/azureFirewalls/firewall_e/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"23ca98ed-5f5f-4627-be82-15e5a5b9c88c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/fw_cbn/providers/Microsoft.Network/ipGroups/ipgroup4\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"52.253.226.50\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"girish01FW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"AzureFirewallIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW/azureFirewallIpConfigurations/AzureFirewallIpConfiguration\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/publicIPAddresses/AzureFirewallPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/virtualNetworks/girish01Vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"NRC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW/networkRuleCollections/NRC1\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"NR1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.0.0/16\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"ARC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girish01RG/providers/Microsoft.Network/azureFirewalls/girish01FW/applicationRuleCollections/ARC1\",\r\n \"etag\": \"W/\\\"d4569d46-21b9-4f3c-bb26-32aeebd819e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"AR1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*.ro\",\r\n \"*.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-882019-23-30-41\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girishCBN_RG/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-882019-23-30-41\",\r\n \"etag\": \"W/\\\"766f294e-d895-4fac-aee4-f6963a9998b8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/girishCBN_RG/providers/Microsoft.Network/virtualHubs/eastus2euap-882019-23-30-41\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/cf6dd6b5-8d66-42fd-85a9-108021552699/resourcegroups/LeahTestPolicy/providers/Microsoft.Network/firewallPolicies/PolicyWithAllRules\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"gTemplateTestFW\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW/azureFirewallIpConfigurations/AzureFirewallIpConfiguration\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/publicIPAddresses/AzureFirewallPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/virtualNetworks/gTemplateTestVnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"NRC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW/networkRuleCollections/NRC1\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"NR1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.0.0/16\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"ARC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/gTemplateTestRG/providers/Microsoft.Network/azureFirewalls/gTemplateTestFW/applicationRuleCollections/ARC1\",\r\n \"etag\": \"W/\\\"13b9b2a6-65a5-4d25-89e8-8d745b624346\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"AR1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*.fb.com\",\r\n \"*.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"ar2\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [\r\n \"WindowsUpdate\"\r\n ],\r\n \"targetFqdns\": [],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.SNAT.PrivateRanges\": \"IANAPrivateRanges\",\r\n \"Network.DNS.EnableProxy\": \"true\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxy/providers/Microsoft.Network/azureFirewalls/firewall1/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"8f124b5b-27a2-4f9c-aca8-4ccdfe8fe4e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.SNAT.PrivateRanges\": \"IANAPrivateRanges\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\",\r\n \"Network.DNS.EnableProxy\": \"true\",\r\n \"Network.DNS.Servers\": \"10.0.0.4\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.arstechnica.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\",\r\n \"443\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\",\r\n \"*google.com\",\r\n \"*azure.com\",\r\n \"*arstechnica.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"toServer\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-dnsproxyvhd/providers/Microsoft.Network/azureFirewalls/firewall1/natRuleCollections/toServer\",\r\n \"etag\": \"W/\\\"e02eb269-7fc2-4ca2-a756-d0cabb6944a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"SSHtoServ\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server.contoso.com\",\r\n \"translatedPort\": \"22\",\r\n \"sourceAddresses\": [\r\n \"45.30.29.40\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.3.84\"\r\n ],\r\n \"destinationPorts\": [\r\n \"22\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/azureFirewallPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"RC1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/applicationRuleCollections/RC1\",\r\n \"etag\": \"W/\\\"90730926-510a-4f87-b92b-c282d3a4f592\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"R1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"www.google.com\",\r\n \"*github.com\",\r\n \"*blob.core.windows.net\",\r\n \"*table.core.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"9dea1cf8-1674-405b-9873-16026e4c8717\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.Servers\": \"8.8.8.8\",\r\n \"Network.DNS.EnableProxy\": \"true\"\r\n },\r\n \"managementIpConfiguration\": {\r\n \"name\": \"AzureFirewallMgmtIpConfiguration\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/AzureFirewallMgmtIpConfiguration\",\r\n \"etag\": \"W/\\\"9dea1cf8-1674-405b-9873-16026e4c8717\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/dnsmgmtpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/dns-vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"9dea1cf8-1674-405b-9873-16026e4c8717\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.2.2.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/publicIPAddresses/dnspip1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ft-bvt1/providers/Microsoft.Network/virtualNetworks/dns-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"0658831b-e045-42c6-a0cb-9b9069f2624f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"0658831b-e045-42c6-a0cb-9b9069f2624f\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"0658831b-e045-42c6-a0cb-9b9069f2624f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/publicIPAddresses/azureFirewallPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftapprules1/providers/Microsoft.Network/virtualNetworks/vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall\",\r\n \"etag\": \"W/\\\"3a8cc7ad-242d-48c0-957b-822c4fb0b88b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": {\r\n \"name\": \"MgmtIpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/MgmtIpConf\",\r\n \"etag\": \"W/\\\"3a8cc7ad-242d-48c0-957b-822c4fb0b88b\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/publicIPAddresses/AzureFirewallBvtMgmtPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/virtualNetworks/AzureFirewallvnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/azureFirewalls/AzureFirewall/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"3a8cc7ad-242d-48c0-957b-822c4fb0b88b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/publicIPAddresses/AzureFirewallBvtPublicIp\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/iavor-ftremovebvt1/providers/Microsoft.Network/virtualNetworks/AzureFirewallvnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_Hub01\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/azureFirewalls/AzureFirewall_Hub01\",\r\n \"etag\": \"W/\\\"58b0b6b4-ac45-429c-b8ff-0263cea5f141\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/virtualHubs/Hub01\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.0.205\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/firewallPolicies/FWPolicy27\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_isgu03Hub\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/azureFirewalls/AzureFirewall_isgu03Hub\",\r\n \"etag\": \"W/\\\"37090e5c-4063-492d-8428-5b04d62034b8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/virtualHubs/isgu03Hub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/cf6dd6b5-8d66-42fd-85a9-108021552699/resourcegroups/LeahTestPolicy/providers/Microsoft.Network/firewallPolicies/PolicyWithHub\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_isguYair01Hub\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/azureFirewalls/AzureFirewall_isguYair01Hub\",\r\n \"etag\": \"W/\\\"4ff467dc-a029-4890-9d30-9fff15a8d1db\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguBB01/providers/Microsoft.Network/virtualHubs/isguYair01Hub\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest1/providers/Microsoft.Network/firewallPolicies/fpTest1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_TestHub3\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/azureFirewalls/AzureFirewall_TestHub3\",\r\n \"etag\": \"W/\\\"0c0aea4f-5fc8-4880-af22-4a0ad210772e\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/virtualHubs/TestHub3\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/stmaneaFirewallManager/providers/Microsoft.Network/firewallPolicies/testPolicy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_TestHub4\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/azureFirewalls/AzureFirewall_TestHub4\",\r\n \"etag\": \"W/\\\"dcc7e692-9ad4-4c1e-a383-96e6cca3ac1d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/virtualHubs/TestHub4\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/stmaneaFirewallManager/providers/Microsoft.Network/firewallPolicies/testPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_TestHub6\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/azureFirewalls/AzureFirewall_TestHub6\",\r\n \"etag\": \"W/\\\"67099697-44a9-4fc9-8298-1c1e243fd0ec\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/isguTestConn/providers/Microsoft.Network/virtualHubs/TestHub6\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/stmaneaFirewallManager/providers/Microsoft.Network/firewallPolicies/testPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"jiejwu-cbn\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/azureFirewalls/jiejwu-cbn\",\r\n \"etag\": \"W/\\\"50fbf0e9-1300-42af-94b2-112b79c514ad\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\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\": \"jiejwu-cbn\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/azureFirewalls/jiejwu-cbn/azureFirewallIpConfigurations/jiejwu-cbn\",\r\n \"etag\": \"W/\\\"50fbf0e9-1300-42af-94b2-112b79c514ad\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/publicIPAddresses/jiejwu-cbn\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/virtualNetworks/jiejwu-cbn/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"test\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/jiejwu-cbn/providers/Microsoft.Network/azureFirewalls/jiejwu-cbn/applicationRuleCollections/test\",\r\n \"etag\": \"W/\\\"50fbf0e9-1300-42af-94b2-112b79c514ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"http\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"www.google.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"mssql\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sqldb1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"sourceIpGroups\": []\r\n },\r\n {\r\n \"name\": \"bing\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0/16\"\r\n ],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_eastus2euap-892019-22-13-18\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/liyue/providers/Microsoft.Network/azureFirewalls/AzureFirewall_eastus2euap-892019-22-13-18\",\r\n \"etag\": \"W/\\\"c485e6ff-3748-4de9-9ad4-ad55da74422b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/liyue/providers/Microsoft.Network/virtualHubs/eastus2euap-892019-22-13-18\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"90.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.230.115\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/liyue/providers/Microsoft.Network/firewallPolicies/testPolicy5\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_maravFirewallManagerCBN2vHub\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManagerCBN2RG/providers/Microsoft.Network/azureFirewalls/AzureFirewall_maravFirewallManagerCBN2vHub\",\r\n \"etag\": \"W/\\\"118ce7d3-6eff-436b-8821-44603775fb79\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManagerCBN2RG/providers/Microsoft.Network/virtualHubs/maravFirewallManagerCBN2vHub\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.1.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.153.30\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/maravFirewallManagerCBN2RG/providers/Microsoft.Network/firewallPolicies/maravFirewallManagerCBN2FirewallPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"piabeynafw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/azureFirewalls/piabeynafw\",\r\n \"etag\": \"W/\\\"87850159-cd39-473b-b9ad-84dc81072cbf\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\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\": \"piabeynapip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/azureFirewalls/piabeynafw/azureFirewallIpConfigurations/piabeynapip\",\r\n \"etag\": \"W/\\\"87850159-cd39-473b-b9ad-84dc81072cbf\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/publicIPAddresses/piabeynapip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/piabeynaalert/providers/Microsoft.Network/virtualNetworks/piabeynavnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"ps5891\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.EnableProxy\": \"false\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"false\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"9e5538db-270f-418c-a663-e4240d1cc80d\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/publicIPAddresses/ps8269\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"vwan22azfw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/publicIPAddresses/Fwpip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/virtualNetworks/HV_eastus2euap-9172019-_c6084b09-6aa1-4762-9020-5b48e308b287/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"allowAll\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw/networkRuleCollections/allowAll\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"allowInternet\",\r\n \"protocols\": [\r\n \"TCP\",\r\n \"ICMP\",\r\n \"UDP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"allowRdp\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_eastus2euap-9172019-17-6-51_4ecaf275-ecc4-42dc-a522-392b5505d866/providers/Microsoft.Network/azureFirewalls/vwan22azfw/natRuleCollections/allowRdp\",\r\n \"etag\": \"W/\\\"630e9c20-2734-46e1-a8c4-3e3514a60fda\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"allowRdp\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.12.0.4\",\r\n \"translatedPort\": \"3389\",\r\n \"sourceAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.2.139\"\r\n ],\r\n \"destinationPorts\": [\r\n \"3390\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_rHub2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/azureFirewalls/AzureFirewall_rHub2\",\r\n \"etag\": \"W/\\\"b4a1effe-1c32-4ec3-9f7a-ddbb31bfd66f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/virtualHubs/rHub2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_rHub5\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/azureFirewalls/AzureFirewall_rHub5\",\r\n \"etag\": \"W/\\\"d093da65-867d-44b0-9364-6cec5ff1c1f0\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/virtualHubs/rHub5\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.225.89\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ankapooFPTest2/providers/Microsoft.Network/firewallPolicies/testFirewallPolicy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_rTestHub1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/azureFirewalls/AzureFirewall_rTestHub1\",\r\n \"etag\": \"W/\\\"276c43c9-09e5-4ce3-b2e6-c93e10199dd3\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/rinagula/providers/Microsoft.Network/virtualHubs/rTestHub1\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.153.206\"\r\n }\r\n ]\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/maravFirewallManager/providers/Microsoft.Network/firewallPolicies/maravTestPolicy\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub11\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub11\",\r\n \"etag\": \"W/\\\"0378463c-5c2f-45c1-8a4a-640bd6f8a221\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub11\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.64.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.225.126\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub18\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub18\",\r\n \"etag\": \"W/\\\"5ee85626-a822-458e-8615-34ab14140ce9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub18\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub19\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub19\",\r\n \"etag\": \"W/\\\"5cc51059-9772-4a6c-afb3-192c8cb7c217\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub19\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub4\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub4\",\r\n \"etag\": \"W/\\\"15e61fa7-34b4-49c4-b924-153ed0cfecea\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub4\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.64.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.3.88\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hub9\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hub9\",\r\n \"etag\": \"W/\\\"0c3af043-f0eb-4f51-b12a-0ba7bdc71fa5\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hub9\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN10\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN10\",\r\n \"etag\": \"W/\\\"3a169859-701e-499d-b293-371f926737d6\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN10\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.230.102\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN11\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN11\",\r\n \"etag\": \"W/\\\"2d183df7-a164-47a4-9ae0-c2a9f5fbf83a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN11\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.4.222\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN3\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN3\",\r\n \"etag\": \"W/\\\"95af3486-8b19-4206-8db5-536e09afcbb9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN3\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"20.39.16.255\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN5\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN5\",\r\n \"etag\": \"W/\\\"ca1ca9be-eafd-41b4-84dd-a70556b4c9af\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN5\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN6\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN6\",\r\n \"etag\": \"W/\\\"df352d09-1853-47fe-a098-c0ce6988e643\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN6\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN7\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN7\",\r\n \"etag\": \"W/\\\"60429276-65cb-4f88-9cda-7efc1e214463\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN7\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN8\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN8\",\r\n \"etag\": \"W/\\\"52a3628e-0cb5-422d-b711-33b66c1bf103\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN8\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-hubN9\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-hubN9\",\r\n \"etag\": \"W/\\\"54cfba8c-7dde-4f23-8d58-092473d22f2a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-hubN9\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.253.224.58\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-vhubN1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-vhubN1\",\r\n \"etag\": \"W/\\\"4bd454e6-8420-43ed-a47d-4a730cc3a809\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-vhubN1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_sujith-vhubN2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/azureFirewalls/AzureFirewall_sujith-vhubN2\",\r\n \"etag\": \"W/\\\"fec7d4aa-bfe2-44df-98e5-b6858eb19bb8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/sujith-rg/providers/Microsoft.Network/virtualHubs/sujith-vhubN2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFirewall_SujithHub-EUAP\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/SujithRG-EUAP/providers/Microsoft.Network/azureFirewalls/AzureFirewall_SujithHub-EUAP\",\r\n \"etag\": \"W/\\\"3834f1ea-eee5-4c96-a997-ec870e486adf\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/SujithRG-EUAP/providers/Microsoft.Network/virtualHubs/SujithHub-EUAP\"\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/SujithRG-EUAP/providers/Microsoft.Network/firewallPolicies/sujithPOlicyWithRG\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"tejas-test-fw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/azureFirewalls/tejas-test-fw\",\r\n \"etag\": \"W/\\\"728afdce-1848-49b8-b0c5-8d1d33008dba\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\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\": \"tejas-test-fwip\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/azureFirewalls/tejas-test-fw/azureFirewallIpConfigurations/tejas-test-fwip\",\r\n \"etag\": \"W/\\\"728afdce-1848-49b8-b0c5-8d1d33008dba\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/publicIPAddresses/tejas-test-fwip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/virtualNetworks/tejas-test-fwvnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"httpsrc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/tejas-test-dnatIcm/providers/Microsoft.Network/azureFirewalls/tejas-test-fw/natRuleCollections/httpsrc\",\r\n \"etag\": \"W/\\\"728afdce-1848-49b8-b0c5-8d1d33008dba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"https\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"translatedAddress\": \"10.0.2.5\",\r\n \"translatedPort\": \"80\",\r\n \"sourceAddresses\": [\r\n \"167.220.24.48\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationAddresses\": [\r\n \"20.39.21.80\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"testfw\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\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\": \"IpConf\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/IpConf\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/publicIPAddresses/azureFirewalls-ip\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/testName\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/RG_isgu03Hub_1aa8240e-a44b-45f2-9c5f-9ca11a7623a6/providers/Microsoft.Network/publicIPAddresses/AzFwPip\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName1\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/testName1\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/EastUs2Liz/providers/Microsoft.Network/publicIPAddresses/newIp\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"testName2\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/testFWDeleteEastUS/providers/Microsoft.Network/azureFirewalls/testfw/azureFirewallIpConfigurations/testName2\",\r\n \"etag\": \"W/\\\"3db1e321-c4d1-43c7-958a-79a9b84287e9\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ipgroup_eastus2euap/providers/Microsoft.Network/publicIPAddresses/pscdcdd48f82\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"aaddf684-3dca-4977-bd6a-15a97a911eb5\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"aaddf684-3dca-4977-bd6a-15a97a911eb5\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/publicIPAddresses/psf63c308623\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-1/providers/Microsoft.Network/virtualNetworks/psa0280fdec0/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"1bf1c355-12f5-41f2-9c2d-16547718d6d0\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"1bf1c355-12f5-41f2-9c2d-16547718d6d0\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/publicIPAddresses/ps40c897b3cc\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0212-IpGroups-6/providers/Microsoft.Network/virtualNetworks/ps2dc56f63d3/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"85f19274-1c06-423d-b070-e67527762e5a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"85f19274-1c06-423d-b070-e67527762e5a\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/publicIPAddresses/pse77e054b86\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-100-IpGroups-5000Ips/providers/Microsoft.Network/virtualNetworks/pscbfeebbb2d/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/publicIPAddresses/psa432cd78fe\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/virtualNetworks/ps258f72e844/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/23\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-5\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-7\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-9\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-11\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-13\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-15\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-17\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-19\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-21\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-23\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-25\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-27\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-29\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-31\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-33\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-35\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-37\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-39\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-41\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-43\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-45\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-47\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-49\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/azureFirewalls/fw123/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"fa1a8889-9c96-4b28-8687-98be12fbe882\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-50-IpGroups-5000Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"52.253.153.213\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/publicIPAddresses/ps4a1e31b38a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/virtualNetworks/psf6475698bb/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/23\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-5\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-7\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-9\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-11\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-13\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-15\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-17\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-19\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/azureFirewalls/fw123/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"4e96bcd0-a2a4-41b3-9917-868b0dd2b250\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0214-IpGroups-5000IpS/providers/Microsoft.Network/ipGroups/ipgroup-20\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"20.39.17.23\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fw123\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/publicIPAddresses/ps35b11a953e\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/virtualNetworks/ps9cd83d5f0e/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/23\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-3\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-5\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-7\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-9\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-11\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-13\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-15\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-17\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-19\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-21\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-23\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-25\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-27\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-29\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-31\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-33\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-35\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-37\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-39\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-41\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-43\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-45\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-47\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-49\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-51\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-53\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-55\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-57\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-59\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-61\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-63\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-65\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-67\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-69\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-71\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-73\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-75\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-77\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-79\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-81\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-83\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-85\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-87\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-89\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-91\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-93\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-95\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-97\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-99\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"someAppRuleCollection\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/applicationRuleCollections/someAppRuleCollection\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 100,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"someAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*bing.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ]\r\n },\r\n {\r\n \"name\": \"someOtherAppRule\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Mssql\",\r\n \"port\": 1433\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"sql1.database.windows.net\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": [\r\n {\r\n \"name\": \"natRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/azureFirewalls/fw123/natRuleCollections/natRc\",\r\n \"etag\": \"W/\\\"1b810d4c-797f-48bd-8d65-e6847bc3e8aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Dnat\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"natRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\"\r\n ],\r\n \"translatedFqdn\": \"server1.internal.com\",\r\n \"translatedPort\": \"96\",\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-2\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-4\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-6\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-8\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-10\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-12\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-14\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-16\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-18\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-20\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-22\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-24\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-26\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-28\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-30\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-32\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-34\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-36\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-38\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-40\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-42\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-44\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-46\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-48\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-50\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-52\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-54\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-56\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-58\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-60\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-62\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-64\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-66\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-68\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-70\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-72\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-74\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-76\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-78\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-80\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-82\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-84\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-86\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-88\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-90\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-92\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-94\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-96\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-98\",\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/z_ipgroup_test_0217-100-IpGroups-500Ips/providers/Microsoft.Network/ipGroups/ipgroup-100\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"20.39.18.100\"\r\n ],\r\n \"destinationPorts\": [\r\n \"95\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/natRuleCollections\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7f167a33-52ab-4b99-8500-2218e97c4683?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83ZjE2N2EzMy01MmFiLTRiOTktODUwMC0yMjE4ZTk3YzQ2ODM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1d4044ef-c1fd-48cd-bcad-30e66021e69b" + ], + "x-ms-correlation-request-id": [ + "c42afaf1-3dea-4bed-a14b-c2c5991ac553" + ], + "x-ms-arm-service-request-id": [ + "ad2011c4-aefe-40d9-a885-a059fae56972" + ], + "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:20200508T042031Z:c42afaf1-3dea-4bed-a14b-c2c5991ac553" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:20: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7f167a33-52ab-4b99-8500-2218e97c4683?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83ZjE2N2EzMy01MmFiLTRiOTktODUwMC0yMjE4ZTk3YzQ2ODM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7b9901db-0748-4dc5-a6e5-0793ae2189b3" + ], + "x-ms-correlation-request-id": [ + "d5108cfb-9325-4e8a-a331-102a92dce509" + ], + "x-ms-arm-service-request-id": [ + "be172553-7cb6-4dde-a641-4dd06da66220" + ], + "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:20200508T042041Z:d5108cfb-9325-4e8a-a331-102a92dce509" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:20: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7f167a33-52ab-4b99-8500-2218e97c4683?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83ZjE2N2EzMy01MmFiLTRiOTktODUwMC0yMjE4ZTk3YzQ2ODM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3c40f630-2aea-4222-b2d5-9b6fec02a4be" + ], + "x-ms-correlation-request-id": [ + "2d8d085a-c768-446f-8cb2-9866fcca0a73" + ], + "x-ms-arm-service-request-id": [ + "832aab26-4873-4ab5-9172-b2ed28225350" + ], + "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:20200508T042051Z:2d8d085a-c768-446f-8cb2-9866fcca0a73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:20: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7f167a33-52ab-4b99-8500-2218e97c4683?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83ZjE2N2EzMy01MmFiLTRiOTktODUwMC0yMjE4ZTk3YzQ2ODM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7a91586c-0f12-46bb-9d6d-f994aef3a965" + ], + "x-ms-correlation-request-id": [ + "edaec34b-b4d7-4ba1-b446-b7974e481ed5" + ], + "x-ms-arm-service-request-id": [ + "1160cf19-6f4d-46b6-b6ba-c5a4c855aa85" + ], + "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:20200508T042101Z:edaec34b-b4d7-4ba1-b446-b7974e481ed5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:21: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7f167a33-52ab-4b99-8500-2218e97c4683?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83ZjE2N2EzMy01MmFiLTRiOTktODUwMC0yMjE4ZTk3YzQ2ODM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "572bed4c-4f57-4a29-9f7e-002fc98e15cd" + ], + "x-ms-correlation-request-id": [ + "5788a337-1537-468e-a55c-1620991d6966" + ], + "x-ms-arm-service-request-id": [ + "5a7e8b32-9109-4239-b481-4d7bd0bb5e9d" + ], + "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:20200508T042111Z:5788a337-1537-468e-a55c-1620991d6966" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:21: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7f167a33-52ab-4b99-8500-2218e97c4683?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83ZjE2N2EzMy01MmFiLTRiOTktODUwMC0yMjE4ZTk3YzQ2ODM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a9341ae5-2922-4eda-82a6-bd2de6a4154b" + ], + "x-ms-correlation-request-id": [ + "91a94b01-8072-4e80-a408-fc401cc62054" + ], + "x-ms-arm-service-request-id": [ + "ab41b53a-d047-4127-966d-68116b5605c9" + ], + "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:20200508T042121Z:91a94b01-8072-4e80-a408-fc401cc62054" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:21: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7f167a33-52ab-4b99-8500-2218e97c4683?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83ZjE2N2EzMy01MmFiLTRiOTktODUwMC0yMjE4ZTk3YzQ2ODM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cef9e1bb-83a4-46b4-9adf-c10cfdfccfc3" + ], + "x-ms-correlation-request-id": [ + "caa2c423-c19c-48b2-bd36-ea8550872b78" + ], + "x-ms-arm-service-request-id": [ + "7372c2a3-2e6d-40c9-ad43-f278ce25248c" + ], + "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:20200508T042131Z:caa2c423-c19c-48b2-bd36-ea8550872b78" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:21: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7f167a33-52ab-4b99-8500-2218e97c4683?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83ZjE2N2EzMy01MmFiLTRiOTktODUwMC0yMjE4ZTk3YzQ2ODM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e97a8ef7-c711-4c74-b90a-75d8df24b217" + ], + "x-ms-correlation-request-id": [ + "6fc7142e-b685-47da-8dab-15c70255a154" + ], + "x-ms-arm-service-request-id": [ + "cbc6a59c-b819-4647-ac67-2c02293e059d" + ], + "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:20200508T042141Z:6fc7142e-b685-47da-8dab-15c70255a154" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:21:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7f167a33-52ab-4b99-8500-2218e97c4683?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83ZjE2N2EzMy01MmFiLTRiOTktODUwMC0yMjE4ZTk3YzQ2ODM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "af97f26e-5a89-4359-b2e7-ea85ebdc52e5" + ], + "x-ms-correlation-request-id": [ + "3b876199-f377-458a-ab70-d2cd2107bacb" + ], + "x-ms-arm-service-request-id": [ + "894fe182-db59-4bdd-a0d4-32cbeaf4f493" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T042152Z:3b876199-f377-458a-ab70-d2cd2107bacb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:21:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7f167a33-52ab-4b99-8500-2218e97c4683?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83ZjE2N2EzMy01MmFiLTRiOTktODUwMC0yMjE4ZTk3YzQ2ODM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bad88f6b-63f4-4910-8b46-3f2ead1a0590" + ], + "x-ms-correlation-request-id": [ + "85481276-a4f4-4e94-8c67-d65807f8c630" + ], + "x-ms-arm-service-request-id": [ + "9743f0a2-bb1f-4658-a0a7-2704eacfb47a" + ], + "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:20200508T042202Z:85481276-a4f4-4e94-8c67-d65807f8c630" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:22:01 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7f167a33-52ab-4b99-8500-2218e97c4683?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83ZjE2N2EzMy01MmFiLTRiOTktODUwMC0yMjE4ZTk3YzQ2ODM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1015b27c-bab6-468a-89a0-542fae0e8fa9" + ], + "x-ms-correlation-request-id": [ + "4949a17e-dae4-4eec-b4d4-6664f5516a05" + ], + "x-ms-arm-service-request-id": [ + "903fdfca-e033-4acf-a1fe-0a74fb8eab96" + ], + "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:20200508T042212Z:4949a17e-dae4-4eec-b4d4-6664f5516a05" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:22:11 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/azureFirewalls/ps5891?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM1ODkxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbb0dc6f-b013-4d55-b16f-ecd02cb30ee1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operationResults/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "28f1e0b1-64e2-4645-a340-4ccf9bb82778" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01" + ], + "x-ms-correlation-request-id": [ + "b199e3bd-4da3-4cd8-8973-77099d184586" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "cf437a24-e280-4683-818f-9e1e0b09ef7f" + ], + "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:20200508T042213Z:b199e3bd-4da3-4cd8-8973-77099d184586" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:22:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b38b867d-2b7e-469e-bc2b-23417f9f0dd1" + ], + "x-ms-correlation-request-id": [ + "baec56b9-008b-4506-a989-24939ddd120e" + ], + "x-ms-arm-service-request-id": [ + "77241749-0795-4479-aebb-ccfdc0ab0558" + ], + "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:20200508T042224Z:baec56b9-008b-4506-a989-24939ddd120e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:22: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c4a2ad9f-2edc-4f31-ba11-f33912533175" + ], + "x-ms-correlation-request-id": [ + "53d6c6d1-685b-423e-adb4-f7d65d077422" + ], + "x-ms-arm-service-request-id": [ + "133e8ec9-e935-4b9b-9851-92f3eb89bee5" + ], + "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:20200508T042234Z:53d6c6d1-685b-423e-adb4-f7d65d077422" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:22: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8119309e-64a5-46cf-a2d3-dec0aef2f7c0" + ], + "x-ms-correlation-request-id": [ + "2b5c195b-8529-4d7e-adf1-102f3f4278ba" + ], + "x-ms-arm-service-request-id": [ + "07111f27-5592-4193-ae28-9b58a9869de5" + ], + "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:20200508T042244Z:2b5c195b-8529-4d7e-adf1-102f3f4278ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:22:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "09b0c169-8810-4ff5-b562-1b2ad019d41c" + ], + "x-ms-correlation-request-id": [ + "9ca85b07-f3d3-4c29-855b-9f1f086e8f61" + ], + "x-ms-arm-service-request-id": [ + "5420559c-325f-4df4-9356-c55995f17c9c" + ], + "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:20200508T042254Z:9ca85b07-f3d3-4c29-855b-9f1f086e8f61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:22: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e5b36d91-2d6b-4670-b9c2-d00c632cd2cc" + ], + "x-ms-correlation-request-id": [ + "b359882d-55cf-43f1-9ce9-f3c2231b6577" + ], + "x-ms-arm-service-request-id": [ + "17879397-6d2c-4677-b20c-93eacd7ce1c6" + ], + "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:20200508T042304Z:b359882d-55cf-43f1-9ce9-f3c2231b6577" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:23: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ac4030f9-7916-4926-ba87-c1e368c323b3" + ], + "x-ms-correlation-request-id": [ + "7e389c14-5200-496e-a930-98c38e5a7acf" + ], + "x-ms-arm-service-request-id": [ + "4f840066-f846-43fa-9ea1-381884d38831" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T042314Z:7e389c14-5200-496e-a930-98c38e5a7acf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:23:14 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "18113f8e-aa3e-4b19-8b43-892551a8045a" + ], + "x-ms-correlation-request-id": [ + "3ab1eef4-669e-4e22-a0da-cf340754e078" + ], + "x-ms-arm-service-request-id": [ + "71b352d5-c411-4de0-aecb-642d363df345" + ], + "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:20200508T042325Z:3ab1eef4-669e-4e22-a0da-cf340754e078" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:23:24 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "90e96186-a125-4c34-843b-9bd2bd627972" + ], + "x-ms-correlation-request-id": [ + "3eeb729b-60cd-48be-a99c-ba4512b74a97" + ], + "x-ms-arm-service-request-id": [ + "3b8f051e-e3fd-42b7-a4fb-e403c9af66dc" + ], + "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:20200508T042335Z:3eeb729b-60cd-48be-a99c-ba4512b74a97" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:23:34 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ac4ddb83-3151-4d07-b59f-9c3aad4c7bfd" + ], + "x-ms-correlation-request-id": [ + "b60aa971-b4d5-40f2-adc1-6e763fba0faa" + ], + "x-ms-arm-service-request-id": [ + "1909fb4e-8289-4e89-9e2d-c5225b3496eb" + ], + "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:20200508T042345Z:b60aa971-b4d5-40f2-adc1-6e763fba0faa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:23:44 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8f94dcea-be59-40b8-b23a-ac92d878fa2f" + ], + "x-ms-correlation-request-id": [ + "a6d80706-110c-4db8-b41e-9cab1f1f77de" + ], + "x-ms-arm-service-request-id": [ + "09e899c6-4264-498f-a95e-ae5af68ce7fa" + ], + "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:20200508T042355Z:a6d80706-110c-4db8-b41e-9cab1f1f77de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:23: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b23e4432-4693-4a5d-8f65-0d5128b49613" + ], + "x-ms-correlation-request-id": [ + "652c9424-a452-4185-b45b-1675b649ff23" + ], + "x-ms-arm-service-request-id": [ + "51795b84-0f47-41d5-8b8e-59aa8bea2e7a" + ], + "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:20200508T042405Z:652c9424-a452-4185-b45b-1675b649ff23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:24: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "50625e5e-0fd4-45ff-8b61-5da735cb8f66" + ], + "x-ms-correlation-request-id": [ + "943aa9dd-4431-455a-8576-9112cfbbef59" + ], + "x-ms-arm-service-request-id": [ + "7eb5bbea-1ff0-48d1-8c20-be5c39e69b23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T042415Z:943aa9dd-4431-455a-8576-9112cfbbef59" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:24: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "355d39a0-e7d7-44cb-b571-d20e95ec7908" + ], + "x-ms-correlation-request-id": [ + "5393175b-ce95-4dc7-a53d-1c6e6cfa08c8" + ], + "x-ms-arm-service-request-id": [ + "b073a082-951a-4b81-ad34-ab03b95ba7d4" + ], + "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:20200508T042425Z:5393175b-ce95-4dc7-a53d-1c6e6cfa08c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:24: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6fa82a52-0720-40a8-a67e-25eaafd2528c" + ], + "x-ms-correlation-request-id": [ + "50fabdc5-3c09-49c4-a046-849f0b4267fc" + ], + "x-ms-arm-service-request-id": [ + "2b79db51-7d69-4055-a9c2-fd6c59afee69" + ], + "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:20200508T042436Z:50fabdc5-3c09-49c4-a046-849f0b4267fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:24:36 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "06dce9d7-dfb1-459d-8907-9ec012fbdad1" + ], + "x-ms-correlation-request-id": [ + "25c3e210-014e-4f51-b583-6d31c253d419" + ], + "x-ms-arm-service-request-id": [ + "ea798be9-c0f1-4f0f-ae73-d53e4b924f9b" + ], + "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:20200508T042446Z:25c3e210-014e-4f51-b583-6d31c253d419" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:24: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f4e3f80e-5eb2-4a68-91f6-daa4c434b351" + ], + "x-ms-correlation-request-id": [ + "bf686ea0-cc62-47cd-8b2a-c4d0c1de7cf2" + ], + "x-ms-arm-service-request-id": [ + "ca569611-81f3-4893-9f17-8b8345bc968f" + ], + "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:20200508T042456Z:bf686ea0-cc62-47cd-8b2a-c4d0c1de7cf2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:24:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4603787c-0a85-4cfa-ae21-8f5fadab9a7c" + ], + "x-ms-correlation-request-id": [ + "2fdf6e32-9847-4150-866e-574e74642a52" + ], + "x-ms-arm-service-request-id": [ + "b3122c5d-01be-44ed-8808-b49d3e924052" + ], + "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:20200508T042506Z:2fdf6e32-9847-4150-866e-574e74642a52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:25:06 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d2a8ce11-e5aa-4a1c-a004-c148fa441906" + ], + "x-ms-correlation-request-id": [ + "6047e233-4ca8-48ce-85f2-d345068513a3" + ], + "x-ms-arm-service-request-id": [ + "4bd6fd36-b4c8-408b-b644-9eedce034c89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T042516Z:6047e233-4ca8-48ce-85f2-d345068513a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:25:16 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1b9dedc2-60ad-40de-8148-541c830aa7d2" + ], + "x-ms-correlation-request-id": [ + "a12c0cd0-ff2f-4544-91a0-90df56c8cb60" + ], + "x-ms-arm-service-request-id": [ + "372f4d4c-3902-4b9c-8331-9d9bad702b7c" + ], + "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:20200508T042526Z:a12c0cd0-ff2f-4544-91a0-90df56c8cb60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:25:26 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bed71c67-07b8-4195-8a80-c8b2ec4147b5" + ], + "x-ms-correlation-request-id": [ + "86f98c7a-b772-4274-b56b-764be4c119f1" + ], + "x-ms-arm-service-request-id": [ + "251141ae-416d-4bcf-8a0c-328388758a92" + ], + "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:20200508T042536Z:86f98c7a-b772-4274-b56b-764be4c119f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:25:36 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5792a156-05a6-4d23-9bcb-737974f9040c" + ], + "x-ms-correlation-request-id": [ + "6d9edbcd-7a95-41b2-a48a-d7f50ed4ac63" + ], + "x-ms-arm-service-request-id": [ + "6f403011-93a2-43c2-bd41-61c78b02e685" + ], + "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:20200508T042546Z:6d9edbcd-7a95-41b2-a48a-d7f50ed4ac63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:25: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3108b3b3-2165-4da4-af0e-65ccd8cd725d" + ], + "x-ms-correlation-request-id": [ + "d4c5522d-08fb-4d39-876e-39acea21276a" + ], + "x-ms-arm-service-request-id": [ + "5ecd5a63-634f-4078-a3df-de384b7a2333" + ], + "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:20200508T042557Z:d4c5522d-08fb-4d39-876e-39acea21276a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:25:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "729689b8-52f8-4b96-b3d1-410ef0c3f1f9" + ], + "x-ms-correlation-request-id": [ + "a2b46f1b-f92b-4f88-bb4c-315363337432" + ], + "x-ms-arm-service-request-id": [ + "59979b73-c49d-414b-8c7f-01fc6c09f183" + ], + "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:20200508T042607Z:a2b46f1b-f92b-4f88-bb4c-315363337432" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:26:06 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "caf858b8-b28d-4f64-90a8-30fed1c61c66" + ], + "x-ms-correlation-request-id": [ + "8cd5a067-1010-4609-9c32-3d2c6bfd6cd6" + ], + "x-ms-arm-service-request-id": [ + "d839b8b6-743f-43d4-aba6-9ab3700cc444" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T042617Z:8cd5a067-1010-4609-9c32-3d2c6bfd6cd6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:26:16 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b76bc556-820d-48ae-8d8c-d5b104d2d916" + ], + "x-ms-correlation-request-id": [ + "1593b4c2-2725-4b9c-84dc-d15ec33a77e0" + ], + "x-ms-arm-service-request-id": [ + "2ea88c0e-df1e-4fc1-b12b-2947b35fe683" + ], + "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:20200508T042627Z:1593b4c2-2725-4b9c-84dc-d15ec33a77e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:26:26 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3062fd3c-a35c-452c-81c8-d313013c62bd" + ], + "x-ms-correlation-request-id": [ + "19e25b79-7fe9-4a22-948f-f2a1fd228205" + ], + "x-ms-arm-service-request-id": [ + "fcfce32f-b98d-498e-b5da-306186cf8528" + ], + "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:20200508T042637Z:19e25b79-7fe9-4a22-948f-f2a1fd228205" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 08 May 2020 04:26:36 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "b1843b4f-7ff6-41fd-b8e5-a0aef9129fe8" + "8922899b-7580-4acd-8ad4-f79e8a4895b1" ], "x-ms-correlation-request-id": [ - "b1843b4f-7ff6-41fd-b8e5-a0aef9129fe8" + "d54dd3cf-0fb3-4a17-bc20-a8cf33022d9f" ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134317Z:b1843b4f-7ff6-41fd-b8e5-a0aef9129fe8" + "x-ms-arm-service-request-id": [ + "9dab23bc-2ee7-4e5f-ab17-80f21ca6593c" ], "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:20200508T042647Z:d54dd3cf-0fb3-4a17-bc20-a8cf33022d9f" + ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:43:17 GMT" + "Fri, 08 May 2020 04:26:47 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "10704" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"liz_testFW\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\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\": \"liz_test_IP\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW/azureFirewallIpConfigurations/liz_test_IP\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/publicIPAddresses/liz_test_IP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/virtualNetworks/liz_test_vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netCollect\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW/networkRuleCollections/netCollect\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 203,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.10.1\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"192.168.10.0\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8080\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n },\r\n {\r\n \"name\": \"netrule\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW/networkRuleCollections/netrule\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"hello\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/EastUs2Liz/providers/Microsoft.Network/ipGroups/ipgroup90\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/EastUs2Liz/providers/Microsoft.Network/ipGroups/ipgroup90\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8080\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\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 \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/virtualNetworks/from-vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf0\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/publicIPAddresses/AzFwDataPublicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/virtualNetworks/from-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"tunnelToFirewall\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\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\": \"tunnelToPIP\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall/azureFirewallIpConfigurations/tunnelToPIP\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/publicIPAddresses/tunnelToPIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/virtualNetworks/to-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.1.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"azfw\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguPowershellTetsing/providers/Microsoft.Network/azureFirewalls/azfw\",\r\n \"etag\": \"W/\\\"099397e8-278c-4616-99c6-6578e772df3c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\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 \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"ps4663\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/azureFirewalls?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9henVyZUZpcmV3YWxscz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3a7bf370-c3ac-405f-9016-4046c423a64d" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -2818,62 +6027,61 @@ "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "0fe18796-30ab-43b6-bc6e-ba83e8824b75", - "e1c69422-d801-4b0b-b2f4-09793c61ebd0", - "9c4c8fba-afa9-4425-9c25-bb4fa44f8687" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "ed524df4-9503-405a-882c-acc484221bae" + "ba140017-93c0-4770-87cb-cd7445dee99f" ], "x-ms-correlation-request-id": [ - "ed524df4-9503-405a-882c-acc484221bae" + "ce88ba69-c15b-4361-ab09-f138a6a1e587" ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134318Z:ed524df4-9503-405a-882c-acc484221bae" + "x-ms-arm-service-request-id": [ + "c3eff964-8176-46b4-bf7e-fb33d703d80c" ], "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:20200508T042657Z:ce88ba69-c15b-4361-ab09-f138a6a1e587" + ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:43:18 GMT" + "Fri, 08 May 2020 04:26:57 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "10704" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"liz_testFW\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\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\": \"liz_test_IP\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW/azureFirewallIpConfigurations/liz_test_IP\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/publicIPAddresses/liz_test_IP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/virtualNetworks/liz_test_vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netCollect\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW/networkRuleCollections/netCollect\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 203,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.10.1\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"192.168.10.0\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8080\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n },\r\n {\r\n \"name\": \"netrule\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW/networkRuleCollections/netrule\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"hello\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/EastUs2Liz/providers/Microsoft.Network/ipGroups/ipgroup90\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/EastUs2Liz/providers/Microsoft.Network/ipGroups/ipgroup90\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8080\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\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 \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/virtualNetworks/from-vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf0\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/publicIPAddresses/AzFwDataPublicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/virtualNetworks/from-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"tunnelToFirewall\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\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\": \"tunnelToPIP\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall/azureFirewallIpConfigurations/tunnelToPIP\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/publicIPAddresses/tunnelToPIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/virtualNetworks/to-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.1.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"azfw\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguPowershellTetsing/providers/Microsoft.Network/azureFirewalls/azfw\",\r\n \"etag\": \"W/\\\"099397e8-278c-4616-99c6-6578e772df3c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\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 \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"ps4663\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/azureFirewalls?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9henVyZUZpcmV3YWxscz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f729091d-3ad9-4cc1-b6fa-30821190583f" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -2883,48 +6091,53 @@ "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "06810e36-5810-4761-8850-eadfb3315bf2", - "221e6ac2-7a4e-4968-9f82-ce8a047d6ce3", - "7df5abf3-f15c-4841-ae75-7417ee7e849e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "36fbe666-d5f1-408b-98a4-5374e6c319dc" + "bc2c99e7-ebf8-45af-8cf3-2cf9ac0b18ba" ], "x-ms-correlation-request-id": [ - "36fbe666-d5f1-408b-98a4-5374e6c319dc" + "8abc381c-0228-438b-9414-c08b57406727" ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134319Z:36fbe666-d5f1-408b-98a4-5374e6c319dc" + "x-ms-arm-service-request-id": [ + "168e5376-0b18-4517-912b-435d328ad67e" ], "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:20200508T042708Z:8abc381c-0228-438b-9414-c08b57406727" + ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:43:18 GMT" + "Fri, 08 May 2020 04:27:07 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "10704" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"liz_testFW\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\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\": \"liz_test_IP\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW/azureFirewallIpConfigurations/liz_test_IP\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/publicIPAddresses/liz_test_IP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/virtualNetworks/liz_test_vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netCollect\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW/networkRuleCollections/netCollect\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 203,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"192.168.10.1\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"192.168.10.0\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8080\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n },\r\n {\r\n \"name\": \"netrule\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/liz_portalTesting/providers/Microsoft.Network/azureFirewalls/liz_testFW/networkRuleCollections/netrule\",\r\n \"etag\": \"W/\\\"104e0007-6d03-4993-b47b-a5edfb086881\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"hello\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/EastUs2Liz/providers/Microsoft.Network/ipGroups/ipgroup90\"\r\n ],\r\n \"destinationIpGroups\": [\r\n \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/EastUs2Liz/providers/Microsoft.Network/ipGroups/ipgroup90\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8080\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"firewall1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\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 \"managementIpConfiguration\": {\r\n \"name\": \"ManagementIpConf\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/ManagementIpConf\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/publicIPAddresses/AzFwManagementPublicIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/virtualNetworks/from-vnet/subnets/AzureFirewallManagementSubnet\"\r\n }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"IpConf0\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/azureFirewallIpConfigurations/IpConf0\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/publicIPAddresses/AzFwDataPublicIP1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/virtualNetworks/from-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.2.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"*\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/firewall1/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"92e232d4-7607-432a-b39e-b7bb32d70486\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"tunnelToFirewall\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\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\": \"tunnelToPIP\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall/azureFirewallIpConfigurations/tunnelToPIP\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/publicIPAddresses/tunnelToPIP\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/virtualNetworks/to-vnet/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"netRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall/networkRuleCollections/netRc1\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"netRule1\",\r\n \"protocols\": [\r\n \"TCP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.1.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"8000-8999\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [\r\n {\r\n \"name\": \"appRc1\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguDataPlanePOC2/providers/Microsoft.Network/azureFirewalls/tunnelToFirewall/applicationRuleCollections/appRc1\",\r\n \"etag\": \"W/\\\"63a6d41f-df2a-4269-9105-c17eb8697c7a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 101,\r\n \"action\": {\r\n \"type\": \"Allow\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"appRule1\",\r\n \"priority\": 0,\r\n \"direction\": \"Inbound\",\r\n \"protocols\": [\r\n {\r\n \"protocolType\": \"Http\",\r\n \"port\": 80\r\n },\r\n {\r\n \"protocolType\": \"Https\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"fqdnTags\": [],\r\n \"targetFqdns\": [\r\n \"*microsoft.com\"\r\n ],\r\n \"actions\": [],\r\n \"sourceAddresses\": [],\r\n \"sourceIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\"\r\n }\r\n ],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"azfw\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/isguPowershellTetsing/providers/Microsoft.Network/azureFirewalls/azfw\",\r\n \"etag\": \"W/\\\"099397e8-278c-4616-99c6-6578e772df3c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus\",\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 \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n },\r\n {\r\n \"name\": \"ps4663\",\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"b13d8beb-9281-4187-bb7d-e71a4d7ad13b\\\"\",\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/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/publicIPAddresses/ps4876\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/cbe07eb4-6924-4023-a4de-a32d1096066c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9jYmUwN2ViNC02OTI0LTQwMjMtYTRkZS1hMzJkMTA5NjA2NmM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2932,7 +6145,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -2946,32 +6159,32 @@ "10" ], "x-ms-request-id": [ - "7d6ba8c7-0f0f-4bae-998b-cf651138be8a" + "c6aed3ac-404e-4f42-80ca-7b3aa515525c" ], "x-ms-correlation-request-id": [ - "d7518efd-d25b-481c-b156-e8e7db91e95f" + "71a57190-5158-41b4-8333-c3e2cc6f44a5" ], "x-ms-arm-service-request-id": [ - "1d28549a-3dbf-46a4-8b24-3ddb5749270a" + "d1ab4a94-f8e4-4b22-8ded-43b34e0ea025" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134334Z:d7518efd-d25b-481c-b156-e8e7db91e95f" + "WESTUS:20200508T042718Z:71a57190-5158-41b4-8333-c3e2cc6f44a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:43:33 GMT" + "Fri, 08 May 2020 04:27:17 GMT" ], "Content-Length": [ "30" @@ -2987,8 +6200,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/cbe07eb4-6924-4023-a4de-a32d1096066c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9jYmUwN2ViNC02OTI0LTQwMjMtYTRkZS1hMzJkMTA5NjA2NmM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2996,7 +6209,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3010,13 +6223,13 @@ "10" ], "x-ms-request-id": [ - "2d96e21f-d924-4332-bc14-7ecb645aeeda" + "55c5dd05-e29c-48df-8113-c9cc599c15d1" ], "x-ms-correlation-request-id": [ - "95acace0-6d1f-42a3-96a3-76bb13fbc498" + "de4da37f-f544-4b3d-9ba3-1a54b02ac03d" ], "x-ms-arm-service-request-id": [ - "147671c8-254b-464d-b5ab-358f7ab2de79" + "ae4de33b-8301-4cfb-ba9e-afaa7c15d82c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3026,16 +6239,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11969" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134344Z:95acace0-6d1f-42a3-96a3-76bb13fbc498" + "WESTUS:20200508T042728Z:de4da37f-f544-4b3d-9ba3-1a54b02ac03d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:43:43 GMT" + "Fri, 08 May 2020 04:27:27 GMT" ], "Content-Length": [ "30" @@ -3051,8 +6264,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/cbe07eb4-6924-4023-a4de-a32d1096066c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9jYmUwN2ViNC02OTI0LTQwMjMtYTRkZS1hMzJkMTA5NjA2NmM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3060,7 +6273,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3074,13 +6287,13 @@ "10" ], "x-ms-request-id": [ - "4d9b0c3d-23f5-4da2-a3b4-c84c5fd54cf4" + "a4daa9c5-fbe5-4080-9e39-1a77a7e535cf" ], "x-ms-correlation-request-id": [ - "d77cded5-ce56-471d-a83a-ce02c271aaa2" + "c11d71ee-0409-411f-9003-b870ba675966" ], "x-ms-arm-service-request-id": [ - "9e2cd118-225d-4ac1-8779-516353a36047" + "7636a7ea-4793-489f-90c8-5687fcc06041" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3090,16 +6303,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11968" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134354Z:d77cded5-ce56-471d-a83a-ce02c271aaa2" + "WESTUS:20200508T042738Z:c11d71ee-0409-411f-9003-b870ba675966" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:43:54 GMT" + "Fri, 08 May 2020 04:27:37 GMT" ], "Content-Length": [ "30" @@ -3115,8 +6328,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/cbe07eb4-6924-4023-a4de-a32d1096066c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9jYmUwN2ViNC02OTI0LTQwMjMtYTRkZS1hMzJkMTA5NjA2NmM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3124,7 +6337,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3138,13 +6351,13 @@ "10" ], "x-ms-request-id": [ - "0aea4c10-5582-42ff-8ffa-ec6ca2de3898" + "435859cf-f4d7-4adb-a051-c2371394191f" ], "x-ms-correlation-request-id": [ - "1094a3e8-9bd9-4b4e-97af-2b49a4c905b2" + "4b8540cc-a68d-475e-adfa-032f02154430" ], "x-ms-arm-service-request-id": [ - "13c17546-6d8a-4c47-a223-4dbb86ddbc4e" + "cbb99d2c-092f-459d-a3c3-79407280dd39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3154,16 +6367,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11967" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134404Z:1094a3e8-9bd9-4b4e-97af-2b49a4c905b2" + "WESTUS:20200508T042748Z:4b8540cc-a68d-475e-adfa-032f02154430" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:44:04 GMT" + "Fri, 08 May 2020 04:27:47 GMT" ], "Content-Length": [ "30" @@ -3179,8 +6392,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/cbe07eb4-6924-4023-a4de-a32d1096066c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9jYmUwN2ViNC02OTI0LTQwMjMtYTRkZS1hMzJkMTA5NjA2NmM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3188,7 +6401,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3202,13 +6415,13 @@ "10" ], "x-ms-request-id": [ - "fa2bedea-6109-454a-b237-fc2a89ed40b4" + "3aa1b41e-f1a4-4cc2-92ae-e65a21d5fb00" ], "x-ms-correlation-request-id": [ - "95a6f375-c54d-4f8e-8a98-9dfa40a45f74" + "b8ec41af-a01b-4750-8b11-ed7cbd85b4af" ], "x-ms-arm-service-request-id": [ - "04f13b7a-b007-4326-9800-f79a80f64148" + "c9e5e4e2-06bf-4f46-b0e4-a83affdf839a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3218,16 +6431,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11966" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134414Z:95a6f375-c54d-4f8e-8a98-9dfa40a45f74" + "WESTUS:20200508T042758Z:b8ec41af-a01b-4750-8b11-ed7cbd85b4af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:44:14 GMT" + "Fri, 08 May 2020 04:27:58 GMT" ], "Content-Length": [ "30" @@ -3243,8 +6456,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/cbe07eb4-6924-4023-a4de-a32d1096066c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9jYmUwN2ViNC02OTI0LTQwMjMtYTRkZS1hMzJkMTA5NjA2NmM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3252,7 +6465,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3262,14 +6475,17 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "38ff6673-fa8e-4d7e-9a72-7630203e79fa" + "37af943e-bf5d-4209-b788-0a1a6cbb8ca3" ], "x-ms-correlation-request-id": [ - "29a33430-4d3e-4a58-9dfc-633a783032a5" + "4e3e4e1e-cf81-46b6-aa90-97ec58ff2511" ], "x-ms-arm-service-request-id": [ - "366dc7b3-2f0f-48a7-adff-d2cea4ed169b" + "faef56f3-0a81-4a7a-8f34-fc483d949e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3279,19 +6495,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11965" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134425Z:29a33430-4d3e-4a58-9dfc-633a783032a5" + "WESTUS:20200508T042808Z:4e3e4e1e-cf81-46b6-aa90-97ec58ff2511" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:44:24 GMT" + "Fri, 08 May 2020 04:28:08 GMT" ], "Content-Length": [ - "29" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3300,26 +6516,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/azureFirewalls/ps4663?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHM0NjYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4b2c9457-9300-4f8a-b723-2992aa4777ef" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3329,59 +6539,53 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operationResults/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01" - ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "461274d6-8ac5-4306-829c-e101b903fb40" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01" + "29772ea4-fcc0-4b93-8849-4932168bf4cd" ], "x-ms-correlation-request-id": [ - "071c698c-01d4-4460-9074-5feeb968e552" - ], - "Azure-AsyncNotification": [ - "Enabled" + "b68bf57c-9650-493f-8267-ca749609752e" ], "x-ms-arm-service-request-id": [ - "ee2f0aeb-0b38-4614-b15d-9026c2e5eeed" + "ca5d4e07-bdcc-4e10-aa82-527c8fe4e4df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134428Z:071c698c-01d4-4460-9074-5feeb968e552" + "WESTUS:20200508T042818Z:b68bf57c-9650-493f-8267-ca749609752e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:44:28 GMT" + "Fri, 08 May 2020 04:28:18 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3389,7 +6593,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3403,13 +6607,13 @@ "10" ], "x-ms-request-id": [ - "5f1be527-2a8c-4530-9432-4d42288b980d" + "82c7ce67-6413-4962-8bbf-aa96631fbb19" ], "x-ms-correlation-request-id": [ - "2697c04a-56f8-4e86-911a-28713e51f119" + "b095055a-ce0c-4a13-86b9-d773a3b7a773" ], "x-ms-arm-service-request-id": [ - "21472075-119e-4f4b-b488-ff0d4d925466" + "cea80b44-88ea-4423-8dce-0d80acc2b2af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3419,16 +6623,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11963" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134439Z:2697c04a-56f8-4e86-911a-28713e51f119" + "WESTUS:20200508T042829Z:b095055a-ce0c-4a13-86b9-d773a3b7a773" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:44:38 GMT" + "Fri, 08 May 2020 04:28:28 GMT" ], "Content-Length": [ "30" @@ -3444,8 +6648,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3453,7 +6657,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3467,13 +6671,13 @@ "10" ], "x-ms-request-id": [ - "cc625929-d356-432a-bb11-91ea51e1a82c" + "26b25bbd-0537-4221-a579-b12147a5bf5d" ], "x-ms-correlation-request-id": [ - "ca2f1e20-7d7f-46e0-92c2-caf3b30aa729" + "dc5e2de6-6df3-4bc4-853f-fba9e2de241b" ], "x-ms-arm-service-request-id": [ - "ffffbe0f-36fd-4ee7-b455-05e31fe13f5a" + "44a3c478-0e7c-4b3f-ac0c-66a5ff9e19e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3483,16 +6687,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11962" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134449Z:ca2f1e20-7d7f-46e0-92c2-caf3b30aa729" + "WESTUS:20200508T042839Z:dc5e2de6-6df3-4bc4-853f-fba9e2de241b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:44:48 GMT" + "Fri, 08 May 2020 04:28:38 GMT" ], "Content-Length": [ "30" @@ -3508,8 +6712,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3517,7 +6721,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3531,13 +6735,13 @@ "10" ], "x-ms-request-id": [ - "0c8aa134-6264-4f52-b050-467a4346ad71" + "dc138bdf-b70c-40ba-8954-1ac1a13860cc" ], "x-ms-correlation-request-id": [ - "f5371613-9426-44b4-ae89-68d0d0f2c076" + "23b3eff5-f642-42e8-a5eb-5a75cc3f0fde" ], "x-ms-arm-service-request-id": [ - "586f785a-43ce-47eb-9d70-d81ef0231894" + "dbbfdf12-ba5b-455e-a926-b2eb5451dbdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3547,16 +6751,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11961" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134459Z:f5371613-9426-44b4-ae89-68d0d0f2c076" + "WESTUS:20200508T042849Z:23b3eff5-f642-42e8-a5eb-5a75cc3f0fde" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:44:59 GMT" + "Fri, 08 May 2020 04:28:48 GMT" ], "Content-Length": [ "30" @@ -3572,8 +6776,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3581,7 +6785,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3595,13 +6799,13 @@ "10" ], "x-ms-request-id": [ - "f9f03109-39f2-49d1-a3c7-032fc515ef04" + "b38b953f-1377-4395-b590-3d355c1885fa" ], "x-ms-correlation-request-id": [ - "7f3b7b86-4c56-4830-b63d-d3850c8a9978" + "ef41257d-d0da-4966-9080-f536e46c4940" ], "x-ms-arm-service-request-id": [ - "df90e6fa-7f74-432c-b8c2-d044b74a6b62" + "462dbdfc-92c8-489a-a036-6ba961032eec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3611,16 +6815,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11960" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134509Z:7f3b7b86-4c56-4830-b63d-d3850c8a9978" + "WESTUS:20200508T042859Z:ef41257d-d0da-4966-9080-f536e46c4940" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:45:09 GMT" + "Fri, 08 May 2020 04:28:58 GMT" ], "Content-Length": [ "30" @@ -3636,8 +6840,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3645,7 +6849,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3659,13 +6863,13 @@ "10" ], "x-ms-request-id": [ - "711639e8-9996-4ce4-8a78-280f32a53d8e" + "8d784100-86a6-4977-88c8-4e285721edb5" ], "x-ms-correlation-request-id": [ - "60b6614f-afd0-44ce-8edc-5df3167abe37" + "7480094a-37a9-4ab7-86da-aa05d349e70d" ], "x-ms-arm-service-request-id": [ - "bdc3652c-22a2-48a4-a5e6-5ef4033b5288" + "ade41331-dae8-4208-b28a-c844a077275f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3675,16 +6879,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11959" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134519Z:60b6614f-afd0-44ce-8edc-5df3167abe37" + "WESTUS:20200508T042909Z:7480094a-37a9-4ab7-86da-aa05d349e70d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:45:19 GMT" + "Fri, 08 May 2020 04:29:08 GMT" ], "Content-Length": [ "30" @@ -3700,8 +6904,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3709,7 +6913,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3723,32 +6927,32 @@ "10" ], "x-ms-request-id": [ - "581db7a0-0fe1-43ee-8bad-058544ddee06" + "286a536c-dbf0-4f92-ac3a-298c65bed327" ], "x-ms-correlation-request-id": [ - "712f924f-6c58-4553-9e51-ca0ec369f1b6" + "0bb852a8-18fd-4e0d-865f-cc903a23f646" ], "x-ms-arm-service-request-id": [ - "57360f53-ad4b-4728-ab12-99729e46bbf1" + "76101944-46ba-4af5-9cdf-a71db6ca4d06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134529Z:712f924f-6c58-4553-9e51-ca0ec369f1b6" + "WESTUS:20200508T042919Z:0bb852a8-18fd-4e0d-865f-cc903a23f646" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:45:29 GMT" + "Fri, 08 May 2020 04:29:18 GMT" ], "Content-Length": [ "30" @@ -3764,8 +6968,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3773,7 +6977,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3787,32 +6991,32 @@ "10" ], "x-ms-request-id": [ - "19c2d8f8-8292-4ce9-b810-c4f45be77a8e" + "9d99499a-1fde-496a-b003-c2fefa1be711" ], "x-ms-correlation-request-id": [ - "fa87426e-99c0-4a18-9636-767d36134c14" + "c270bca6-e6eb-4c79-a05a-367a37959d2d" ], "x-ms-arm-service-request-id": [ - "505fba8c-b2f4-406d-8eda-e62e955a65e2" + "d22fee41-aabf-433a-a754-4a9ccf752c8c" ], "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-ratelimit-remaining-subscription-reads": [ + "11957" + ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134540Z:fa87426e-99c0-4a18-9636-767d36134c14" + "WESTUS:20200508T042930Z:c270bca6-e6eb-4c79-a05a-367a37959d2d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:45:39 GMT" + "Fri, 08 May 2020 04:29:29 GMT" ], "Content-Length": [ "30" @@ -3828,8 +7032,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3837,7 +7041,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3851,13 +7055,13 @@ "10" ], "x-ms-request-id": [ - "ac0722ee-0f44-487a-b825-680229924443" + "10467a06-edaa-4847-9870-529432add8e1" ], "x-ms-correlation-request-id": [ - "49ec590d-9b7d-4417-bc1a-a7c108109946" + "ab9486f7-205d-4531-a035-f11bb0a0e6b0" ], "x-ms-arm-service-request-id": [ - "2af0f277-e918-4970-aa0c-cb1bb21e0b8c" + "949fc451-cd30-485d-a26e-0b6323e78804" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3867,16 +7071,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11956" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134550Z:49ec590d-9b7d-4417-bc1a-a7c108109946" + "WESTUS:20200508T042940Z:ab9486f7-205d-4531-a035-f11bb0a0e6b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:45:49 GMT" + "Fri, 08 May 2020 04:29:40 GMT" ], "Content-Length": [ "30" @@ -3892,8 +7096,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3901,7 +7105,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3915,13 +7119,13 @@ "10" ], "x-ms-request-id": [ - "46dd15c3-3793-4593-a7b7-256e2c07e153" + "0ce224a1-4f18-4f13-907b-0b76307070c4" ], "x-ms-correlation-request-id": [ - "d05245fc-97c1-40b9-9142-f5f505184211" + "112ec346-a3d6-4bac-8203-fb5517912124" ], "x-ms-arm-service-request-id": [ - "306302d5-af05-4e8f-b7c6-3fb179197e2f" + "751cab36-8aba-4f24-a100-29444fc8fdca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3931,16 +7135,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11955" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134600Z:d05245fc-97c1-40b9-9142-f5f505184211" + "WESTUS:20200508T042950Z:112ec346-a3d6-4bac-8203-fb5517912124" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:46:00 GMT" + "Fri, 08 May 2020 04:29:50 GMT" ], "Content-Length": [ "30" @@ -3956,8 +7160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3965,7 +7169,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -3979,13 +7183,13 @@ "10" ], "x-ms-request-id": [ - "1725f2ec-bb25-40cb-b537-98f662e0d96a" + "0b127ec1-4458-4269-b923-aaf6024314f5" ], "x-ms-correlation-request-id": [ - "e1b923a7-49e5-41e4-9ffa-79a9fe32966a" + "8bbbd2e0-0082-404b-9b06-3ad4dd3060f6" ], "x-ms-arm-service-request-id": [ - "cd64e4a9-b7c5-4ef3-bb49-37166ac65e17" + "f0c8334f-5124-4c8e-9677-a443a2410455" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3995,16 +7199,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11954" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134610Z:e1b923a7-49e5-41e4-9ffa-79a9fe32966a" + "WESTUS:20200508T043000Z:8bbbd2e0-0082-404b-9b06-3ad4dd3060f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:46:10 GMT" + "Fri, 08 May 2020 04:30:00 GMT" ], "Content-Length": [ "30" @@ -4020,8 +7224,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4029,7 +7233,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -4043,13 +7247,13 @@ "10" ], "x-ms-request-id": [ - "61bdcf3d-22da-4956-96e2-7dce7db874ef" + "3c2991c8-12cd-4a7d-8354-be348cec08c3" ], "x-ms-correlation-request-id": [ - "abebbfb7-d8c7-4673-9051-51380098a298" + "e7b9ec5a-9125-4c0c-9c9b-3ce09ea5acab" ], "x-ms-arm-service-request-id": [ - "9c3ca5fe-8517-49e3-a787-ab4a42bbee22" + "7fc834be-3392-4051-8668-b156aba81c05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4059,16 +7263,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11953" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134621Z:abebbfb7-d8c7-4673-9051-51380098a298" + "WESTUS:20200508T043010Z:e7b9ec5a-9125-4c0c-9c9b-3ce09ea5acab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:46:20 GMT" + "Fri, 08 May 2020 04:30:10 GMT" ], "Content-Length": [ "30" @@ -4084,8 +7288,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4093,7 +7297,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -4107,32 +7311,32 @@ "10" ], "x-ms-request-id": [ - "c565699a-25da-4908-92b6-e1a8cfc8af34" + "0978e418-afe2-4cf4-a9e9-04073cee01fe" ], "x-ms-correlation-request-id": [ - "c0ef5b54-436b-40e5-9e6f-48b738acb1a2" + "75b24eb7-f072-4f77-99f4-fc085b45c7c4" ], "x-ms-arm-service-request-id": [ - "38f1cb7d-aa38-4c71-ad5b-eee5a4b4b507" + "d2ceb352-6b4a-401f-9856-dd4f047a4e01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134631Z:c0ef5b54-436b-40e5-9e6f-48b738acb1a2" + "WESTUS:20200508T043020Z:75b24eb7-f072-4f77-99f4-fc085b45c7c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:46:30 GMT" + "Fri, 08 May 2020 04:30:20 GMT" ], "Content-Length": [ "30" @@ -4148,8 +7352,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4157,7 +7361,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -4171,13 +7375,13 @@ "10" ], "x-ms-request-id": [ - "b7177b9f-aacb-456f-b99d-89a5a463e3a2" + "62c6a509-8deb-42fd-9e84-8086fc8b374d" ], "x-ms-correlation-request-id": [ - "6d64d030-4777-436f-b6e1-ccb63393cc1e" + "f3f527bf-fabc-4ce0-93b0-b447da5b9be5" ], "x-ms-arm-service-request-id": [ - "1b952b2b-d5b6-4225-b730-45dd6b8c8c5b" + "443fed6e-9d46-4c2b-9128-301642502556" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4187,16 +7391,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11951" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134641Z:6d64d030-4777-436f-b6e1-ccb63393cc1e" + "WESTUS:20200508T043030Z:f3f527bf-fabc-4ce0-93b0-b447da5b9be5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:46:40 GMT" + "Fri, 08 May 2020 04:30:30 GMT" ], "Content-Length": [ "30" @@ -4212,8 +7416,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4221,7 +7425,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -4235,32 +7439,32 @@ "10" ], "x-ms-request-id": [ - "6704aedb-239a-4de0-8dc5-9b77bd733e4a" + "8c59283c-466a-4e69-9e7d-a46c222d3d48" ], "x-ms-correlation-request-id": [ - "4e38985f-184f-4536-b5a4-87684736d895" + "6b9632c9-e7d8-481f-acc6-6083fe88b86a" ], "x-ms-arm-service-request-id": [ - "2c1ec205-29b9-4de8-9b3f-227a77608733" + "701ff4b3-9729-4e6c-a35b-c3c636cdf5a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134651Z:4e38985f-184f-4536-b5a4-87684736d895" + "WESTUS:20200508T043040Z:6b9632c9-e7d8-481f-acc6-6083fe88b86a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:46:51 GMT" + "Fri, 08 May 2020 04:30:40 GMT" ], "Content-Length": [ "30" @@ -4276,8 +7480,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4285,7 +7489,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -4299,13 +7503,13 @@ "10" ], "x-ms-request-id": [ - "422d4ef9-0493-4ac1-ad14-2a350bc4464e" + "7c8a96a0-5ef3-4091-8d29-dc6b4a0a8e4d" ], "x-ms-correlation-request-id": [ - "f5a4841c-8bf5-4677-b8e6-e6ef78b0a794" + "3a24da8e-5016-4990-9998-902468f0137c" ], "x-ms-arm-service-request-id": [ - "75dd8106-12e1-480f-a470-54613ccc0ffd" + "8f42ce20-2c9d-47ac-b6ea-296ca48273cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4315,16 +7519,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11949" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134702Z:f5a4841c-8bf5-4677-b8e6-e6ef78b0a794" + "WESTUS:20200508T043050Z:3a24da8e-5016-4990-9998-902468f0137c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:47:01 GMT" + "Fri, 08 May 2020 04:30:50 GMT" ], "Content-Length": [ "30" @@ -4340,8 +7544,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4349,7 +7553,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -4363,13 +7567,13 @@ "10" ], "x-ms-request-id": [ - "309c8d23-ed4b-4ac8-a80e-9ff7f3edbc46" + "a8710ee1-0487-4a43-a0af-fcece9cf3ed6" ], "x-ms-correlation-request-id": [ - "be07ec74-7c4e-41b7-8539-e58ac2a62a3f" + "8caac4d8-62a3-41ef-9d27-b695711817d6" ], "x-ms-arm-service-request-id": [ - "07c0f81b-44d1-42d9-8710-3c78cf8fb8d1" + "600d3899-89bf-462a-8c70-bdf5a49ae42c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4379,16 +7583,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11948" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134712Z:be07ec74-7c4e-41b7-8539-e58ac2a62a3f" + "WESTUS:20200508T043101Z:8caac4d8-62a3-41ef-9d27-b695711817d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:47:12 GMT" + "Fri, 08 May 2020 04:31:00 GMT" ], "Content-Length": [ "30" @@ -4404,8 +7608,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4413,7 +7617,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -4427,13 +7631,13 @@ "10" ], "x-ms-request-id": [ - "8b487e5f-42ba-4eac-b06e-75456a8640fb" + "aff6c673-02b7-43a9-b437-335caa12c92e" ], "x-ms-correlation-request-id": [ - "e92be62a-2f8c-4e42-a550-24d0d69169d9" + "c462a5c6-7453-42c3-b115-111b56d7ad25" ], "x-ms-arm-service-request-id": [ - "63eebded-6902-4b3e-a452-1506425a1f36" + "3b0b4bfb-2c57-40da-9b31-ff67ae5eef24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4443,16 +7647,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11947" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134722Z:e92be62a-2f8c-4e42-a550-24d0d69169d9" + "WESTUS:20200508T043111Z:c462a5c6-7453-42c3-b115-111b56d7ad25" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:47:22 GMT" + "Fri, 08 May 2020 04:31:10 GMT" ], "Content-Length": [ "30" @@ -4468,8 +7672,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4477,7 +7681,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -4491,32 +7695,32 @@ "10" ], "x-ms-request-id": [ - "583647ab-03c0-4ab0-a651-3f1f4b7080e9" + "f78586e7-af7b-4d3d-9166-3b9eb1527990" ], "x-ms-correlation-request-id": [ - "a56fed44-a21c-42db-8a70-521c37188c5e" + "8fe94e83-0b3a-4058-8a62-de9923f754da" ], "x-ms-arm-service-request-id": [ - "ce2c0e72-05ee-4125-b269-8f61d3d6d605" + "3a6e89ad-e617-40a3-9937-cd8b6a4c52e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134732Z:a56fed44-a21c-42db-8a70-521c37188c5e" + "WESTUS:20200508T043121Z:8fe94e83-0b3a-4058-8a62-de9923f754da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:47:32 GMT" + "Fri, 08 May 2020 04:31:20 GMT" ], "Content-Length": [ "30" @@ -4532,8 +7736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4541,7 +7745,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -4555,13 +7759,13 @@ "10" ], "x-ms-request-id": [ - "6f0aedef-c98c-40ad-8898-a00ddc80fb49" + "75a28837-e663-48c9-95e9-c4c35e21687a" ], "x-ms-correlation-request-id": [ - "3f87dafd-231a-4c3f-b3f6-e4801df7cecb" + "e4e86777-6b0f-4f1e-989c-ae0d1c8fc13c" ], "x-ms-arm-service-request-id": [ - "174de627-62d8-4514-b2ab-d8abb6253dc1" + "e570db30-6fe2-49bd-8ddc-9d8ac8d362f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4571,16 +7775,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11945" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134742Z:3f87dafd-231a-4c3f-b3f6-e4801df7cecb" + "WESTUS:20200508T043131Z:e4e86777-6b0f-4f1e-989c-ae0d1c8fc13c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:47:42 GMT" + "Fri, 08 May 2020 04:31:31 GMT" ], "Content-Length": [ "30" @@ -4596,8 +7800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4605,7 +7809,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -4619,13 +7823,13 @@ "10" ], "x-ms-request-id": [ - "70856256-a405-4cc0-8a86-09bc05081bf4" + "7e5d68be-960a-45c1-ad80-92e47a7c6d91" ], "x-ms-correlation-request-id": [ - "03d0369e-b842-4da5-ac66-b3888d7190d9" + "a33e6ef3-6292-42d2-b62c-1ba23fa4b0e3" ], "x-ms-arm-service-request-id": [ - "a1643fff-7670-4aad-a6bf-190c9dd8aaa5" + "2390942a-d056-433b-adc3-5c91a5beca06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4635,16 +7839,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11944" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134752Z:03d0369e-b842-4da5-ac66-b3888d7190d9" + "WESTUS:20200508T043141Z:a33e6ef3-6292-42d2-b62c-1ba23fa4b0e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:47:52 GMT" + "Fri, 08 May 2020 04:31:41 GMT" ], "Content-Length": [ "30" @@ -4660,8 +7864,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4669,7 +7873,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -4683,32 +7887,32 @@ "10" ], "x-ms-request-id": [ - "2fa0746d-84b5-4145-98b8-bff832a8ddad" + "88b49090-9c77-48d2-a75c-f94727c078f1" ], "x-ms-correlation-request-id": [ - "c68b4d71-3887-4fbf-a1c6-b09e865e96fc" + "2b07a0fe-08ca-40f7-94bd-1668080303e7" ], "x-ms-arm-service-request-id": [ - "37565669-a4b6-4bff-957d-a7ebfae2691c" + "0e7c916e-0f09-4351-8ca0-53f658060478" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134803Z:c68b4d71-3887-4fbf-a1c6-b09e865e96fc" + "WESTUS:20200508T043151Z:2b07a0fe-08ca-40f7-94bd-1668080303e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:48:02 GMT" + "Fri, 08 May 2020 04:31:51 GMT" ], "Content-Length": [ "30" @@ -4724,8 +7928,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4733,7 +7937,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -4747,13 +7951,13 @@ "10" ], "x-ms-request-id": [ - "17623acb-61ff-4d22-8dc0-71a64260eccf" + "193908b5-5539-4220-8a8f-75682758a05f" ], "x-ms-correlation-request-id": [ - "a3db7ea0-5b3f-4d1b-b01d-416bb2ce48d0" + "cf8533a4-2541-486e-9f19-8e033acdc9e9" ], "x-ms-arm-service-request-id": [ - "ee1ae8a1-8ce9-4dd0-a9b5-8315ba73d864" + "a48ce612-057c-4d1d-8248-73cf048e8586" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4763,16 +7967,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11942" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134813Z:a3db7ea0-5b3f-4d1b-b01d-416bb2ce48d0" + "WESTUS:20200508T043201Z:cf8533a4-2541-486e-9f19-8e033acdc9e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:48:12 GMT" + "Fri, 08 May 2020 04:32:01 GMT" ], "Content-Length": [ "30" @@ -4788,8 +7992,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4797,7 +8001,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -4811,13 +8015,13 @@ "10" ], "x-ms-request-id": [ - "8ada2ce8-3281-43f9-917b-f9a7e47e49f9" + "0928c6d2-d203-4a01-a55f-54e262f72930" ], "x-ms-correlation-request-id": [ - "781b2be5-5e35-44d9-bf2b-27bcb47bb1fb" + "6890c711-a69f-4bf6-ae03-fc2d34227f33" ], "x-ms-arm-service-request-id": [ - "7528db8f-9fb2-4091-a7a9-bc4811b1143f" + "5ba07a63-5cf2-44a4-a57b-5e01977a6a5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4827,16 +8031,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11941" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134823Z:781b2be5-5e35-44d9-bf2b-27bcb47bb1fb" + "WESTUS:20200508T043211Z:6890c711-a69f-4bf6-ae03-fc2d34227f33" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:48:22 GMT" + "Fri, 08 May 2020 04:32:11 GMT" ], "Content-Length": [ "30" @@ -4852,8 +8056,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4861,7 +8065,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -4875,32 +8079,32 @@ "10" ], "x-ms-request-id": [ - "cb728a23-29b9-4f73-ab9f-f950337e2e54" + "c5ccc088-aca6-40bb-ab05-8268e6798586" ], "x-ms-correlation-request-id": [ - "4240ddb6-748c-4f63-adf9-8f6c1988c27c" + "1cfddb58-a15e-45fb-a369-f7b3f80405cc" ], "x-ms-arm-service-request-id": [ - "eb48488f-4ae6-4ce2-b286-d7f9809af1ee" + "8d0e9646-66a1-4935-b049-38006c081c1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134833Z:4240ddb6-748c-4f63-adf9-8f6c1988c27c" + "WESTUS:20200508T043221Z:1cfddb58-a15e-45fb-a369-f7b3f80405cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:48:33 GMT" + "Fri, 08 May 2020 04:32:21 GMT" ], "Content-Length": [ "30" @@ -4916,8 +8120,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4925,7 +8129,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -4939,13 +8143,13 @@ "10" ], "x-ms-request-id": [ - "ac8d8518-0bd0-4e80-8756-4fc7439676c7" + "b1bfada7-ad7b-49d3-b4bf-bef87089935e" ], "x-ms-correlation-request-id": [ - "e7af5b2c-7210-4247-bf34-383e6f376d4c" + "c71506d5-5873-48de-869b-68b4451d2c67" ], "x-ms-arm-service-request-id": [ - "0da81a7a-1bc2-4cfe-99cd-1496eb20987e" + "82b1127d-e204-43e0-b39b-0536f9d1da31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4955,16 +8159,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11939" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134844Z:e7af5b2c-7210-4247-bf34-383e6f376d4c" + "WESTUS:20200508T043232Z:c71506d5-5873-48de-869b-68b4451d2c67" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:48:43 GMT" + "Fri, 08 May 2020 04:32:31 GMT" ], "Content-Length": [ "30" @@ -4980,8 +8184,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4989,7 +8193,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5003,13 +8207,13 @@ "10" ], "x-ms-request-id": [ - "a582887c-386b-42b8-a4b9-22bf74b3084e" + "57f956ad-365c-4b2f-a3f7-6818ef895bf5" ], "x-ms-correlation-request-id": [ - "739afc54-314c-47ca-b168-692721f8479a" + "d5283ea9-7b66-409c-b76c-a91682ea4805" ], "x-ms-arm-service-request-id": [ - "f59c5723-d2b2-4e25-9f81-ea95507d9dd2" + "14ddb8a7-26fd-401e-87d9-a7b663436486" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5019,16 +8223,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11938" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134854Z:739afc54-314c-47ca-b168-692721f8479a" + "WESTUS:20200508T043242Z:d5283ea9-7b66-409c-b76c-a91682ea4805" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:48:53 GMT" + "Fri, 08 May 2020 04:32:41 GMT" ], "Content-Length": [ "30" @@ -5044,8 +8248,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5053,7 +8257,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5067,13 +8271,13 @@ "10" ], "x-ms-request-id": [ - "9466d025-eabe-42b3-9820-75d7b96ca9a6" + "638a8235-4cb3-435b-9da7-032f4b3cd1df" ], "x-ms-correlation-request-id": [ - "6e06d5c6-43d2-48e8-a1d5-1f61388bb4a9" + "4043bb80-8270-4bf3-9345-86016053d9db" ], "x-ms-arm-service-request-id": [ - "aae51117-eaa6-445f-993f-6e81aada939d" + "123d28d4-f689-466c-bb03-92901c54f6bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5083,16 +8287,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11937" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134904Z:6e06d5c6-43d2-48e8-a1d5-1f61388bb4a9" + "WESTUS:20200508T043252Z:4043bb80-8270-4bf3-9345-86016053d9db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:49:03 GMT" + "Fri, 08 May 2020 04:32:51 GMT" ], "Content-Length": [ "30" @@ -5108,8 +8312,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5117,7 +8321,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5131,32 +8335,32 @@ "10" ], "x-ms-request-id": [ - "d08472b1-5026-4fd2-8cf5-b9ef8afe2c66" + "2b331bc5-3440-4c44-9f30-d82f9ee0f902" ], "x-ms-correlation-request-id": [ - "0e68ff9b-1497-4465-9cbc-756453a30b8a" + "f056db16-b3e8-4197-84b6-a7c0fa36b5fb" ], "x-ms-arm-service-request-id": [ - "d5966b3d-b03d-4f86-b590-b753ebf57fd2" + "2a4d4f9c-639c-45ec-b432-4cc44096e3f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134914Z:0e68ff9b-1497-4465-9cbc-756453a30b8a" + "WESTUS:20200508T043302Z:f056db16-b3e8-4197-84b6-a7c0fa36b5fb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:49:14 GMT" + "Fri, 08 May 2020 04:33:01 GMT" ], "Content-Length": [ "30" @@ -5172,8 +8376,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5181,7 +8385,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5195,13 +8399,13 @@ "10" ], "x-ms-request-id": [ - "2d9edfa0-45d9-4763-958d-25c7d5deb064" + "535c1a0e-488c-49ed-a723-fc88e76e6f2d" ], "x-ms-correlation-request-id": [ - "e31fa587-8ae3-47b7-8262-b5b6de56ef66" + "aed07245-1041-42df-af94-b46d1d8339f8" ], "x-ms-arm-service-request-id": [ - "b600a507-4253-4860-be0f-c9f12993ae2f" + "4fe3f9d3-51a6-48a6-8c02-c27f3b80b919" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5211,16 +8415,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11935" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134925Z:e31fa587-8ae3-47b7-8262-b5b6de56ef66" + "WESTUS:20200508T043312Z:aed07245-1041-42df-af94-b46d1d8339f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:49:24 GMT" + "Fri, 08 May 2020 04:33:11 GMT" ], "Content-Length": [ "30" @@ -5236,8 +8440,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5245,7 +8449,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5259,32 +8463,32 @@ "10" ], "x-ms-request-id": [ - "e8694e95-de92-49d6-8ecc-7b2f7720b3c1" + "cb282129-fa48-479d-b305-3b88db40944f" ], "x-ms-correlation-request-id": [ - "f085c412-98de-438e-8d13-842d8dfd3b33" + "92c73fe9-de6a-42c5-95ef-c73a1ff46be9" ], "x-ms-arm-service-request-id": [ - "350b0daa-dabb-4ece-9b08-eec4fcbbbeb9" + "97303231-1881-48a3-824c-c4872438bfc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134935Z:f085c412-98de-438e-8d13-842d8dfd3b33" + "WESTUS:20200508T043322Z:92c73fe9-de6a-42c5-95ef-c73a1ff46be9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:49:35 GMT" + "Fri, 08 May 2020 04:33:22 GMT" ], "Content-Length": [ "30" @@ -5300,8 +8504,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5309,7 +8513,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5323,13 +8527,13 @@ "10" ], "x-ms-request-id": [ - "94de29e6-adde-4f37-8388-dc2b132df82e" + "f1c6f344-32a3-4350-81e1-132a901781a9" ], "x-ms-correlation-request-id": [ - "5066ae54-feee-4d99-820a-1d815b7a223d" + "6df29945-d9c0-47cc-b6c6-0092351ac72c" ], "x-ms-arm-service-request-id": [ - "2191515b-40c8-403d-8f02-9d510cbc589b" + "b80e080d-675c-4067-a7c4-acc7cae0a587" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5339,16 +8543,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11933" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134945Z:5066ae54-feee-4d99-820a-1d815b7a223d" + "WESTUS:20200508T043332Z:6df29945-d9c0-47cc-b6c6-0092351ac72c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:49:45 GMT" + "Fri, 08 May 2020 04:33:32 GMT" ], "Content-Length": [ "30" @@ -5364,8 +8568,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5373,7 +8577,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5387,13 +8591,13 @@ "10" ], "x-ms-request-id": [ - "355b0f2a-bd50-4a94-81b9-811c4d4a5030" + "db90e4f3-7c8f-494e-beda-158613d1c34c" ], "x-ms-correlation-request-id": [ - "35c9c540-dec0-4090-92a1-888e59aa1b6a" + "96e6a560-6086-449d-9fc2-5fe2dfecf5c7" ], "x-ms-arm-service-request-id": [ - "736b0481-a64d-491b-9832-80fb86236243" + "87b0a799-d51c-4a56-86ff-851c9999b8de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5403,16 +8607,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11932" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T134955Z:35c9c540-dec0-4090-92a1-888e59aa1b6a" + "WESTUS:20200508T043343Z:96e6a560-6086-449d-9fc2-5fe2dfecf5c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:49:55 GMT" + "Fri, 08 May 2020 04:33:42 GMT" ], "Content-Length": [ "30" @@ -5428,8 +8632,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5437,7 +8641,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5451,13 +8655,13 @@ "10" ], "x-ms-request-id": [ - "ee7930b7-3a4f-4464-93f3-62c0bada3607" + "33290768-91b5-44b1-a684-4cabf3896947" ], "x-ms-correlation-request-id": [ - "61fd2a89-4fdb-480a-a9c2-e3f32b27ec6c" + "a75ea25c-26e3-4800-a206-d490a25aec6a" ], "x-ms-arm-service-request-id": [ - "50253c9c-dddf-4a41-b53f-79820df57a89" + "dd02b4b8-c026-4ca3-a69f-7f2e4d975b40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5467,16 +8671,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11931" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135005Z:61fd2a89-4fdb-480a-a9c2-e3f32b27ec6c" + "WESTUS:20200508T043353Z:a75ea25c-26e3-4800-a206-d490a25aec6a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:50:05 GMT" + "Fri, 08 May 2020 04:33:52 GMT" ], "Content-Length": [ "30" @@ -5492,8 +8696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5501,7 +8705,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5515,13 +8719,13 @@ "10" ], "x-ms-request-id": [ - "7d182ddf-2e58-4317-9407-32f264af49e6" + "9f17746d-60fa-45fd-8f92-dd830d4ed0d3" ], "x-ms-correlation-request-id": [ - "9f62579e-e354-425e-ade7-b81a59cbbf42" + "58de94b9-7fbd-4534-b8cd-b23e703c48e2" ], "x-ms-arm-service-request-id": [ - "9f0daeea-ec04-4154-981f-a089a6144357" + "792388e5-e600-4ef1-9455-8fe014da23a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5531,16 +8735,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11930" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135015Z:9f62579e-e354-425e-ade7-b81a59cbbf42" + "WESTUS:20200508T043403Z:58de94b9-7fbd-4534-b8cd-b23e703c48e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:50:15 GMT" + "Fri, 08 May 2020 04:34:02 GMT" ], "Content-Length": [ "30" @@ -5556,8 +8760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5565,7 +8769,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5579,32 +8783,32 @@ "10" ], "x-ms-request-id": [ - "209033e6-b993-4a51-91cb-a358061f3c68" + "b88e45b1-04da-48ca-a245-35f02a67ce36" ], "x-ms-correlation-request-id": [ - "f1890451-9132-44e6-95a9-2b8d9889798a" + "99eb63c8-99fc-425c-afb6-be94f05db121" ], "x-ms-arm-service-request-id": [ - "fbf3f9d9-d9cd-416e-92a5-268fe731c59e" + "8ef8b660-be44-406b-ab79-55b821d47b2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135026Z:f1890451-9132-44e6-95a9-2b8d9889798a" + "WESTUS:20200508T043413Z:99eb63c8-99fc-425c-afb6-be94f05db121" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:50:25 GMT" + "Fri, 08 May 2020 04:34:12 GMT" ], "Content-Length": [ "30" @@ -5620,8 +8824,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5629,7 +8833,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5643,32 +8847,32 @@ "10" ], "x-ms-request-id": [ - "d46b34a9-79fb-49ab-80e1-143c84a7fbd4" + "2f09bc19-7eb1-4004-9681-cd072bfba2bf" ], "x-ms-correlation-request-id": [ - "3ce8aa33-aaab-4608-8c5f-421572fbe03e" + "2e05c0cb-c4dd-4bbf-a32d-929cca0d310b" ], "x-ms-arm-service-request-id": [ - "5c795692-54b5-4f1f-b885-9013ba66882b" + "681487f3-c88c-465c-a172-8526b1feb933" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135036Z:3ce8aa33-aaab-4608-8c5f-421572fbe03e" + "WESTUS:20200508T043423Z:2e05c0cb-c4dd-4bbf-a32d-929cca0d310b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:50:35 GMT" + "Fri, 08 May 2020 04:34:22 GMT" ], "Content-Length": [ "30" @@ -5684,8 +8888,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5693,7 +8897,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5707,13 +8911,13 @@ "10" ], "x-ms-request-id": [ - "b8a2eeaf-5419-4de2-906d-72be786de573" + "2ec3d153-eb74-461f-8c61-5e6d824089a4" ], "x-ms-correlation-request-id": [ - "f4d1ab22-5145-4c2c-9904-69b52da8f81c" + "89345613-9de4-4b82-ae3b-eb866dd94a23" ], "x-ms-arm-service-request-id": [ - "f377a7ee-7e22-4acd-ae87-74a95cf72c23" + "30aafe55-5169-454e-af2c-c0f1d4f0c21d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5723,16 +8927,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11927" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135046Z:f4d1ab22-5145-4c2c-9904-69b52da8f81c" + "WESTUS:20200508T043433Z:89345613-9de4-4b82-ae3b-eb866dd94a23" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:50:45 GMT" + "Fri, 08 May 2020 04:34:33 GMT" ], "Content-Length": [ "30" @@ -5748,8 +8952,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5757,7 +8961,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5768,13 +8972,13 @@ "no-cache" ], "x-ms-request-id": [ - "c9db58fa-623b-4951-8046-ceb8c0191395" + "c0133138-7f42-427f-be79-68ecaca1795e" ], "x-ms-correlation-request-id": [ - "52fbcd9a-3597-4c2b-98a5-b50d24b2f538" + "946918e7-68eb-4256-959a-890225224f1a" ], "x-ms-arm-service-request-id": [ - "c1d064e3-5eb3-4c46-bff3-04a852533b93" + "adbca2c1-c976-4012-b4af-af4e8898fee1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5784,16 +8988,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11926" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135056Z:52fbcd9a-3597-4c2b-98a5-b50d24b2f538" + "WESTUS:20200508T043443Z:946918e7-68eb-4256-959a-890225224f1a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:50:56 GMT" + "Fri, 08 May 2020 04:34:43 GMT" ], "Content-Length": [ "29" @@ -5809,8 +9013,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operationResults/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9uUmVzdWx0cy80NjEyNzRkNi04YWM1LTQzMDYtODI5Yy1lMTAxYjkwM2ZiNDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operationResults/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9uUmVzdWx0cy8yOGYxZTBiMS02NGUyLTQ2NDUtYTM0MC00Y2NmOWJiODI3Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5818,7 +9022,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5829,22 +9033,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operationResults/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operationResults/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01" ], "x-ms-request-id": [ - "461274d6-8ac5-4306-829c-e101b903fb40" + "28f1e0b1-64e2-4645-a340-4ccf9bb82778" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/461274d6-8ac5-4306-829c-e101b903fb40?api-version=2020-04-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/28f1e0b1-64e2-4645-a340-4ccf9bb82778?api-version=2020-04-01" ], "x-ms-correlation-request-id": [ - "071c698c-01d4-4460-9074-5feeb968e552" + "b199e3bd-4da3-4cd8-8973-77099d184586" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "ee2f0aeb-0b38-4614-b15d-9026c2e5eeed" + "cf437a24-e280-4683-818f-9e1e0b09ef7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5854,16 +9058,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11925" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135057Z:81a977f3-4983-461b-8696-1abee027d2a8" + "WESTUS:20200508T043443Z:2a631f34-74de-4588-acd9-bd6e726d79c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:50:56 GMT" + "Fri, 08 May 2020 04:34:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5876,13 +9080,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourceGroups/ps4992/providers/Microsoft.Network/virtualNetworks/ps9882?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlR3JvdXBzL3BzNDk5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzOTg4Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps4809/providers/Microsoft.Network/virtualNetworks/ps7224?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzNDgwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzIyND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9ce0344-b2da-4772-9ef8-c1eac54a28c8" + "9bbfa073-c3ac-46d3-be4e-c7445d290f7a" ], "Accept-Language": [ "en-US" @@ -5891,7 +9095,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5902,25 +9106,25 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operationResults/6a5a8a24-b0da-4cd5-9435-d914e219824c?api-version=2020-04-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operationResults/8e01a624-e44f-45b1-bbda-c8055f6647fe?api-version=2020-04-01" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "6a5a8a24-b0da-4cd5-9435-d914e219824c" + "8e01a624-e44f-45b1-bbda-c8055f6647fe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/6a5a8a24-b0da-4cd5-9435-d914e219824c?api-version=2020-04-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/8e01a624-e44f-45b1-bbda-c8055f6647fe?api-version=2020-04-01" ], "x-ms-correlation-request-id": [ - "36d45b9d-e2f6-4594-85d3-c8f6c0d94364" + "bb187e2c-96d3-4cd9-8522-cb8a74ebb24e" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "37172229-5d63-4e7e-af05-4ac41517123a" + "b65cc346-e880-4b39-b44f-bcdd118445ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5933,13 +9137,13 @@ "14999" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135058Z:36d45b9d-e2f6-4594-85d3-c8f6c0d94364" + "WESTUS:20200508T043444Z:bb187e2c-96d3-4cd9-8522-cb8a74ebb24e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:50:58 GMT" + "Fri, 08 May 2020 04:34:43 GMT" ], "Expires": [ "-1" @@ -5952,8 +9156,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/6a5a8a24-b0da-4cd5-9435-d914e219824c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy82YTVhOGEyNC1iMGRhLTRjZDUtOTQzNS1kOTE0ZTIxOTgyNGM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/8e01a624-e44f-45b1-bbda-c8055f6647fe?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy84ZTAxYTYyNC1lNDRmLTQ1YjEtYmJkYS1jODA1NWY2NjQ3ZmU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5961,7 +9165,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -5972,13 +9176,13 @@ "no-cache" ], "x-ms-request-id": [ - "c0f5facd-589e-4a8b-842c-a9624e63073d" + "6b764b6d-7311-42df-9e86-8ddb8bc4fc7f" ], "x-ms-correlation-request-id": [ - "d9475b9b-429a-460e-bd1e-e0756c369c64" + "3083820e-e56c-4e95-98e0-d2b664a27be9" ], "x-ms-arm-service-request-id": [ - "8d958f4c-968a-454d-8395-bbe0de473576" + "a5b3acab-d169-416f-b44c-cf4becaef2f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5991,13 +9195,13 @@ "11999" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135109Z:d9475b9b-429a-460e-bd1e-e0756c369c64" + "WESTUS:20200508T043454Z:3083820e-e56c-4e95-98e0-d2b664a27be9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:51:09 GMT" + "Fri, 08 May 2020 04:34:54 GMT" ], "Content-Length": [ "29" @@ -6013,8 +9217,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operationResults/6a5a8a24-b0da-4cd5-9435-d914e219824c?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9uUmVzdWx0cy82YTVhOGEyNC1iMGRhLTRjZDUtOTQzNS1kOTE0ZTIxOTgyNGM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operationResults/8e01a624-e44f-45b1-bbda-c8055f6647fe?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9uUmVzdWx0cy84ZTAxYTYyNC1lNDRmLTQ1YjEtYmJkYS1jODA1NWY2NjQ3ZmU/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6022,7 +9226,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" ] }, "ResponseHeaders": { @@ -6033,22 +9237,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operationResults/6a5a8a24-b0da-4cd5-9435-d914e219824c?api-version=2020-04-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operationResults/8e01a624-e44f-45b1-bbda-c8055f6647fe?api-version=2020-04-01" ], "x-ms-request-id": [ - "6a5a8a24-b0da-4cd5-9435-d914e219824c" + "8e01a624-e44f-45b1-bbda-c8055f6647fe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/providers/Microsoft.Network/locations/eastus2euap/operations/6a5a8a24-b0da-4cd5-9435-d914e219824c?api-version=2020-04-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/8e01a624-e44f-45b1-bbda-c8055f6647fe?api-version=2020-04-01" ], "x-ms-correlation-request-id": [ - "36d45b9d-e2f6-4594-85d3-c8f6c0d94364" + "bb187e2c-96d3-4cd9-8522-cb8a74ebb24e" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "37172229-5d63-4e7e-af05-4ac41517123a" + "b65cc346-e880-4b39-b44f-bcdd118445ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6061,13 +9265,13 @@ "11998" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135109Z:40bbf69e-fd36-4191-a85f-4e13f814fac1" + "WESTUS:20200508T043454Z:dce78e0f-fc73-46c1-82a4-5af71d166567" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:51:09 GMT" + "Fri, 08 May 2020 04:34:54 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6080,13 +9284,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/resourcegroups/ps4992?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L3Jlc291cmNlZ3JvdXBzL3BzNDk5Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/ps4809?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlZ3JvdXBzL3BzNDgwOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a85d38bf-5c34-409a-acca-3efc6f86b267" + "4132321e-2aee-4edb-9001-4b1baeaf894e" ], "Accept-Language": [ "en-US" @@ -6095,7 +9299,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6106,7 +9310,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -6115,13 +9319,13 @@ "14999" ], "x-ms-request-id": [ - "ccc5e5c0-b126-4588-bae3-e44bc2046842" + "fa89295e-d830-4aaf-86e3-e84d5d94cb31" ], "x-ms-correlation-request-id": [ - "ccc5e5c0-b126-4588-bae3-e44bc2046842" + "fa89295e-d830-4aaf-86e3-e84d5d94cb31" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135112Z:ccc5e5c0-b126-4588-bae3-e44bc2046842" + "WESTUS:20200508T043457Z:fa89295e-d830-4aaf-86e3-e84d5d94cb31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6130,7 +9334,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:51:11 GMT" + "Fri, 08 May 2020 04:34:57 GMT" ], "Expires": [ "-1" @@ -6143,8 +9347,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9USXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6152,7 +9356,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6163,22 +9367,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "bf138651-2fb2-48db-884e-9e1e21924f13" + "95cac49b-c455-4aa7-bb4e-2aef95feecec" ], "x-ms-correlation-request-id": [ - "bf138651-2fb2-48db-884e-9e1e21924f13" + "95cac49b-c455-4aa7-bb4e-2aef95feecec" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135127Z:bf138651-2fb2-48db-884e-9e1e21924f13" + "WESTUS:20200508T043512Z:95cac49b-c455-4aa7-bb4e-2aef95feecec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6187,7 +9391,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:51:27 GMT" + "Fri, 08 May 2020 04:35:12 GMT" ], "Expires": [ "-1" @@ -6200,8 +9404,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9USXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6209,7 +9413,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6220,22 +9424,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "cf5b7e20-938c-4c7d-a9eb-974b578c51a4" + "d5624375-b06d-4b59-9d5c-f1ee973e6988" ], "x-ms-correlation-request-id": [ - "cf5b7e20-938c-4c7d-a9eb-974b578c51a4" + "d5624375-b06d-4b59-9d5c-f1ee973e6988" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135142Z:cf5b7e20-938c-4c7d-a9eb-974b578c51a4" + "WESTUS:20200508T043527Z:d5624375-b06d-4b59-9d5c-f1ee973e6988" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6244,7 +9448,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:51:42 GMT" + "Fri, 08 May 2020 04:35:27 GMT" ], "Expires": [ "-1" @@ -6257,8 +9461,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9USXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6266,7 +9470,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6277,22 +9481,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-request-id": [ - "17dc9111-a2cd-4525-aff6-ee3a74d8b4e7" + "234f98d6-83a5-4c40-acab-9295e815dc08" ], "x-ms-correlation-request-id": [ - "17dc9111-a2cd-4525-aff6-ee3a74d8b4e7" + "234f98d6-83a5-4c40-acab-9295e815dc08" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135158Z:17dc9111-a2cd-4525-aff6-ee3a74d8b4e7" + "WESTUS:20200508T043542Z:234f98d6-83a5-4c40-acab-9295e815dc08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6301,7 +9505,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:51:57 GMT" + "Fri, 08 May 2020 04:35:42 GMT" ], "Expires": [ "-1" @@ -6314,8 +9518,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9USXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6323,7 +9527,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6334,22 +9538,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-request-id": [ - "f454d5fa-34da-4ad0-ae4d-e3364ebfc2bd" + "a01f5040-13f0-4c4e-a3aa-8470db020704" ], "x-ms-correlation-request-id": [ - "f454d5fa-34da-4ad0-ae4d-e3364ebfc2bd" + "a01f5040-13f0-4c4e-a3aa-8470db020704" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135213Z:f454d5fa-34da-4ad0-ae4d-e3364ebfc2bd" + "WESTUS:20200508T043558Z:a01f5040-13f0-4c4e-a3aa-8470db020704" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6358,7 +9562,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:52:12 GMT" + "Fri, 08 May 2020 04:35:58 GMT" ], "Expires": [ "-1" @@ -6371,8 +9575,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9USXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6380,7 +9584,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6391,22 +9595,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-request-id": [ - "609d9b0d-db69-4c16-8a76-527c9f62faec" + "92ed86dd-5f35-4195-951a-cedc458a3d8d" ], "x-ms-correlation-request-id": [ - "609d9b0d-db69-4c16-8a76-527c9f62faec" + "92ed86dd-5f35-4195-951a-cedc458a3d8d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135228Z:609d9b0d-db69-4c16-8a76-527c9f62faec" + "WESTUS:20200508T043613Z:92ed86dd-5f35-4195-951a-cedc458a3d8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6415,7 +9619,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:52:27 GMT" + "Fri, 08 May 2020 04:36:12 GMT" ], "Expires": [ "-1" @@ -6428,8 +9632,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9USXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6437,7 +9641,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6448,22 +9652,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-request-id": [ - "420e54d8-b767-41e8-b070-9dc089e81e2a" + "b07341f3-c84b-4a64-88a2-7827003192c2" ], "x-ms-correlation-request-id": [ - "420e54d8-b767-41e8-b070-9dc089e81e2a" + "b07341f3-c84b-4a64-88a2-7827003192c2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135243Z:420e54d8-b767-41e8-b070-9dc089e81e2a" + "WESTUS:20200508T043628Z:b07341f3-c84b-4a64-88a2-7827003192c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6472,7 +9676,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:52:42 GMT" + "Fri, 08 May 2020 04:36:28 GMT" ], "Expires": [ "-1" @@ -6485,8 +9689,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9USXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6494,7 +9698,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6505,22 +9709,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-request-id": [ - "a8b29737-72a6-4a0d-b87a-6bef3f518727" + "99e9549f-c7df-44ad-a070-94aabd11eeec" ], "x-ms-correlation-request-id": [ - "a8b29737-72a6-4a0d-b87a-6bef3f518727" + "99e9549f-c7df-44ad-a070-94aabd11eeec" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135259Z:a8b29737-72a6-4a0d-b87a-6bef3f518727" + "WESTUS:20200508T043643Z:99e9549f-c7df-44ad-a070-94aabd11eeec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6529,7 +9733,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:52:59 GMT" + "Fri, 08 May 2020 04:36:43 GMT" ], "Expires": [ "-1" @@ -6542,8 +9746,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9USXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6551,7 +9755,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6562,22 +9766,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-request-id": [ - "bd12bc84-6117-46f0-a254-82db8df6da3f" + "8805c7a5-dcce-4d64-85ee-98c51b0e2303" ], "x-ms-correlation-request-id": [ - "bd12bc84-6117-46f0-a254-82db8df6da3f" + "8805c7a5-dcce-4d64-85ee-98c51b0e2303" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135314Z:bd12bc84-6117-46f0-a254-82db8df6da3f" + "WESTUS:20200508T043658Z:8805c7a5-dcce-4d64-85ee-98c51b0e2303" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6586,7 +9790,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:53:14 GMT" + "Fri, 08 May 2020 04:36:58 GMT" ], "Expires": [ "-1" @@ -6599,8 +9803,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9USXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6608,7 +9812,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6619,22 +9823,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-request-id": [ - "acfa6944-b1e4-46ad-8f3d-9e22ce7e17c1" + "4a18d302-5b7e-4b26-9300-a7237990505e" ], "x-ms-correlation-request-id": [ - "acfa6944-b1e4-46ad-8f3d-9e22ce7e17c1" + "4a18d302-5b7e-4b26-9300-a7237990505e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135329Z:acfa6944-b1e4-46ad-8f3d-9e22ce7e17c1" + "WESTUS:20200508T043713Z:4a18d302-5b7e-4b26-9300-a7237990505e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6643,7 +9847,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:53:29 GMT" + "Fri, 08 May 2020 04:37:13 GMT" ], "Expires": [ "-1" @@ -6656,8 +9860,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9USXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6665,7 +9869,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6676,22 +9880,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-request-id": [ - "ee0d6373-8c8a-48a8-8b9b-2ca45c094aa9" + "d9156cac-6714-4609-a1cf-9cd44d6cddf2" ], "x-ms-correlation-request-id": [ - "ee0d6373-8c8a-48a8-8b9b-2ca45c094aa9" + "d9156cac-6714-4609-a1cf-9cd44d6cddf2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135345Z:ee0d6373-8c8a-48a8-8b9b-2ca45c094aa9" + "WESTUS:20200508T043728Z:d9156cac-6714-4609-a1cf-9cd44d6cddf2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6700,7 +9904,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:53:44 GMT" + "Fri, 08 May 2020 04:37:28 GMT" ], "Expires": [ "-1" @@ -6713,8 +9917,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9USXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6722,7 +9926,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6733,22 +9937,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11989" ], "x-ms-request-id": [ - "1e79f17e-3b28-4301-9f1c-7f3bc7f9da6c" + "797e563e-d75d-42fa-b017-7a7cd970e6f9" ], "x-ms-correlation-request-id": [ - "1e79f17e-3b28-4301-9f1c-7f3bc7f9da6c" + "797e563e-d75d-42fa-b017-7a7cd970e6f9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135400Z:1e79f17e-3b28-4301-9f1c-7f3bc7f9da6c" + "WESTUS:20200508T043744Z:797e563e-d75d-42fa-b017-7a7cd970e6f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6757,7 +9961,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:53:59 GMT" + "Fri, 08 May 2020 04:37:43 GMT" ], "Expires": [ "-1" @@ -6770,8 +9974,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9USXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6779,7 +9983,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6790,22 +9994,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-request-id": [ - "6a682e2f-28a8-4dc3-90bb-b9b2f3aab917" + "de45abb8-0c02-451a-8d47-dffed9dde211" ], "x-ms-correlation-request-id": [ - "6a682e2f-28a8-4dc3-90bb-b9b2f3aab917" + "de45abb8-0c02-451a-8d47-dffed9dde211" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135415Z:6a682e2f-28a8-4dc3-90bb-b9b2f3aab917" + "WESTUS:20200508T043759Z:de45abb8-0c02-451a-8d47-dffed9dde211" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6814,7 +10018,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:54:15 GMT" + "Fri, 08 May 2020 04:37:59 GMT" ], "Expires": [ "-1" @@ -6827,8 +10031,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9USXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6836,7 +10040,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6847,22 +10051,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11987" ], "x-ms-request-id": [ - "4191b8b5-d912-4efc-891e-b0955c0c45db" + "ad94e525-7e7e-4325-bf7b-f7b0819597bb" ], "x-ms-correlation-request-id": [ - "4191b8b5-d912-4efc-891e-b0955c0c45db" + "ad94e525-7e7e-4325-bf7b-f7b0819597bb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135430Z:4191b8b5-d912-4efc-891e-b0955c0c45db" + "WESTUS:20200508T043814Z:ad94e525-7e7e-4325-bf7b-f7b0819597bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6871,7 +10075,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:54:30 GMT" + "Fri, 08 May 2020 04:38:14 GMT" ], "Expires": [ "-1" @@ -6884,8 +10088,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9USXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6893,7 +10097,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6904,16 +10108,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11986" ], "x-ms-request-id": [ - "879c911a-65c6-4f10-b28d-2a0103807c4a" + "797b9bfe-8af7-4c67-ba10-ed2b861db7f4" ], "x-ms-correlation-request-id": [ - "879c911a-65c6-4f10-b28d-2a0103807c4a" + "797b9bfe-8af7-4c67-ba10-ed2b861db7f4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135446Z:879c911a-65c6-4f10-b28d-2a0103807c4a" + "WESTUS:20200508T043829Z:797b9bfe-8af7-4c67-ba10-ed2b861db7f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6922,7 +10126,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:54:45 GMT" + "Fri, 08 May 2020 04:38:29 GMT" ], "Expires": [ "-1" @@ -6935,8 +10139,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d2ad5196-2292-4080-b209-ce4399b0a807/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5OTItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDJhZDUxOTYtMjI5Mi00MDgwLWIyMDktY2U0Mzk5YjBhODA3L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU9USXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MDktRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1Ea3RSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6944,7 +10148,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -6955,16 +10159,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11985" ], "x-ms-request-id": [ - "529db157-84f7-4880-8942-11d908a7b9f4" + "fc266b85-bcf8-4599-9dee-d168c0d7fdb0" ], "x-ms-correlation-request-id": [ - "529db157-84f7-4880-8942-11d908a7b9f4" + "fc266b85-bcf8-4599-9dee-d168c0d7fdb0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20200507T135446Z:529db157-84f7-4880-8942-11d908a7b9f4" + "WESTUS:20200508T043829Z:fc266b85-bcf8-4599-9dee-d168c0d7fdb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6973,7 +10177,7 @@ "nosniff" ], "Date": [ - "Thu, 07 May 2020 13:54:45 GMT" + "Fri, 08 May 2020 04:38:29 GMT" ], "Expires": [ "-1" @@ -6988,13 +10192,13 @@ ], "Names": { "Test-AzureFirewallCRUD": [ - "ps4992", - "ps4663", - "ps9882", - "ps4876" + "ps4809", + "ps5891", + "ps7224", + "ps8269" ] }, "Variables": { - "SubscriptionId": "d2ad5196-2292-4080-b209-ce4399b0a807" + "SubscriptionId": "aeb5b02a-0f18-45a4-86d6-81808115cacf" } } \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallTests/TestAzureFirewallWithDNSProxy.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallTests/TestAzureFirewallWithDNSProxy.json new file mode 100644 index 000000000000..9828e6dbf2db --- /dev/null +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallTests/TestAzureFirewallWithDNSProxy.json @@ -0,0 +1,8048 @@ +{ + "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": [ + "d7c69da4-65aa-47f0-929a-55504d76c2ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "0f43679d-e1dd-4a09-a2c2-ca69329ccc41" + ], + "x-ms-correlation-request-id": [ + "0f43679d-e1dd-4a09-a2c2-ca69329ccc41" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T072909Z:0f43679d-e1dd-4a09-a2c2-ca69329ccc41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "76718" + ] + }, + "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 \"applicationId\": \"6d057c82-a784-47ae-8d12-ca7b38cf06b4\",\r\n \"roleDefinitionId\": \"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"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 \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"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 \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"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 \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"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 \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchValidatePrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchNotifyPrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZonesInternal\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityPartnerProviders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"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 \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"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 \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\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 \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-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\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"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 \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"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\": \"None\"\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ipAllocations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/ps3845?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlZ3JvdXBzL3BzMzg0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49eb8127-a9b8-4baa-afff-16fd6ad9a6bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "92498c8a-53bf-4bc6-bde0-c92f59d51d5b" + ], + "x-ms-correlation-request-id": [ + "92498c8a-53bf-4bc6-bde0-c92f59d51d5b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T072911Z:92498c8a-53bf-4bc6-bde0-c92f59d51d5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:11 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845\",\r\n \"name\": \"ps3845\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE1Mz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c093b19-7e5f-4698-8741-e746210dd56c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "02d9560e-71f8-4f2c-83eb-222e124b5466" + ], + "x-ms-correlation-request-id": [ + "02d9560e-71f8-4f2c-83eb-222e124b5466" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T072912Z:02d9560e-71f8-4f2c-83eb-222e124b5466" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:12 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/ps7153' under resource group 'ps3845' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE1Mz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"13867632-7fbe-472f-84a7-d4b6e7f3aff7\"" + ], + "x-ms-request-id": [ + "a517f809-826c-4ce0-9f10-e338c04aa118" + ], + "x-ms-correlation-request-id": [ + "dd3f77b1-b87d-499d-bff3-8f553eb7e95b" + ], + "x-ms-arm-service-request-id": [ + "de7f31e0-b7ea-486b-ad1a-73e646526836" + ], + "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:20200507T072919Z:dd3f77b1-b87d-499d-bff3-8f553eb7e95b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:19 GMT" + ], + "Content-Length": [ + "1299" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7153\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153\",\r\n \"etag\": \"W/\\\"13867632-7fbe-472f-84a7-d4b6e7f3aff7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b94fc98e-cc5f-4c7e-9de3-cf67ae16ac78\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"13867632-7fbe-472f-84a7-d4b6e7f3aff7\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE1Mz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0f0fa38-0d0c-4251-a840-228bc5c2c2da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"13867632-7fbe-472f-84a7-d4b6e7f3aff7\"" + ], + "x-ms-request-id": [ + "c8faeb1c-58d3-4999-8d2a-9c51f9b1a8f2" + ], + "x-ms-correlation-request-id": [ + "057bc728-96b4-488f-b651-f63d36842082" + ], + "x-ms-arm-service-request-id": [ + "afa09a93-4d1d-4000-a421-21dca4d04392" + ], + "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:20200507T072919Z:057bc728-96b4-488f-b651-f63d36842082" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:19 GMT" + ], + "Content-Length": [ + "1299" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7153\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153\",\r\n \"etag\": \"W/\\\"13867632-7fbe-472f-84a7-d4b6e7f3aff7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b94fc98e-cc5f-4c7e-9de3-cf67ae16ac78\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"13867632-7fbe-472f-84a7-d4b6e7f3aff7\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE1Mz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f698139-5c47-4333-81ca-e2ea79e14080" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"13867632-7fbe-472f-84a7-d4b6e7f3aff7\"" + ], + "x-ms-request-id": [ + "1f82031d-0f8a-4efc-8316-d5031e0027e0" + ], + "x-ms-correlation-request-id": [ + "ea5bced2-c8cf-4ff3-94c2-f464479dfb4f" + ], + "x-ms-arm-service-request-id": [ + "87751467-201b-40cf-ab7f-ced37ffa56de" + ], + "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:20200507T072924Z:ea5bced2-c8cf-4ff3-94c2-f464479dfb4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:24 GMT" + ], + "Content-Length": [ + "1299" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7153\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153\",\r\n \"etag\": \"W/\\\"13867632-7fbe-472f-84a7-d4b6e7f3aff7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b94fc98e-cc5f-4c7e-9de3-cf67ae16ac78\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"13867632-7fbe-472f-84a7-d4b6e7f3aff7\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE1Mz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"AzureFirewallSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b16dc6e7-9e02-492a-832e-ac1616bbb95d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "695" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "0737a77b-6720-44e3-8796-22644b71f46c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/0737a77b-6720-44e3-8796-22644b71f46c?api-version=2020-04-01" + ], + "x-ms-correlation-request-id": [ + "c3e9c3a1-cb8f-4064-bba8-cdb4dbe3e18c" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "4100bc8e-7b56-498f-aae8-809ecd878622" + ], + "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:20200507T072916Z:c3e9c3a1-cb8f-4064-bba8-cdb4dbe3e18c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:16 GMT" + ], + "Content-Length": [ + "1297" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7153\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153\",\r\n \"etag\": \"W/\\\"81c48677-9bca-4f43-a3c2-2ecfcfebfaf0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b94fc98e-cc5f-4c7e-9de3-cf67ae16ac78\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153/subnets/AzureFirewallSubnet\",\r\n \"etag\": \"W/\\\"81c48677-9bca-4f43-a3c2-2ecfcfebfaf0\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/0737a77b-6720-44e3-8796-22644b71f46c?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8wNzM3YTc3Yi02NzIwLTQ0ZTMtODc5Ni0yMjY0NGI3MWY0NmM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b7c6a73b-a132-411e-832c-1a3af9ae0ea3" + ], + "x-ms-correlation-request-id": [ + "c9662b22-0f4c-44d8-b249-8ee3767ba271" + ], + "x-ms-arm-service-request-id": [ + "e4db9219-477a-45b2-b696-c6cd287cd6eb" + ], + "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:20200507T072919Z:c9662b22-0f4c-44d8-b249-8ee3767ba271" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:19 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/publicIPAddresses/ps6036?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM2MDM2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4627c1d8-87f8-41dc-b2a6-b6ee7cf9f15a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "352f15c7-7782-4ad4-9f41-4bf7185d6f76" + ], + "x-ms-correlation-request-id": [ + "352f15c7-7782-4ad4-9f41-4bf7185d6f76" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T072920Z:352f15c7-7782-4ad4-9f41-4bf7185d6f76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:19 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/ps6036' under resource group 'ps3845' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/publicIPAddresses/ps6036?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM2MDM2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"80e69130-7e85-43a7-baff-90760d2669c7\"" + ], + "x-ms-request-id": [ + "01373c47-c459-4ee6-835b-49ab6ecacb6c" + ], + "x-ms-correlation-request-id": [ + "7f502477-66aa-4ece-9e47-bac99f58ad17" + ], + "x-ms-arm-service-request-id": [ + "e3bb8380-808e-48eb-bd23-6ad6f2928d92" + ], + "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:20200507T072924Z:7f502477-66aa-4ece-9e47-bac99f58ad17" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:23 GMT" + ], + "Content-Length": [ + "635" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6036\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/publicIPAddresses/ps6036\",\r\n \"etag\": \"W/\\\"80e69130-7e85-43a7-baff-90760d2669c7\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"78e77493-9d88-4cfa-b788-e15cc640740d\",\r\n \"ipAddress\": \"52.253.224.114\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/publicIPAddresses/ps6036?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM2MDM2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49dea883-cf4f-476a-a5c1-ae1761d24da6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"80e69130-7e85-43a7-baff-90760d2669c7\"" + ], + "x-ms-request-id": [ + "af1a3351-9e46-4352-a04f-1e5086316785" + ], + "x-ms-correlation-request-id": [ + "73a7c7d8-31e1-429b-b0f3-51fcf1696852" + ], + "x-ms-arm-service-request-id": [ + "90f17293-5a5b-43e9-ba4f-b0bb799b7151" + ], + "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:20200507T072924Z:73a7c7d8-31e1-429b-b0f3-51fcf1696852" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:23 GMT" + ], + "Content-Length": [ + "635" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6036\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/publicIPAddresses/ps6036\",\r\n \"etag\": \"W/\\\"80e69130-7e85-43a7-baff-90760d2669c7\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"78e77493-9d88-4cfa-b788-e15cc640740d\",\r\n \"ipAddress\": \"52.253.224.114\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/publicIPAddresses/ps6036?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM2MDM2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09b5365c-8b10-44d1-b918-65cdd7ca07f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"80e69130-7e85-43a7-baff-90760d2669c7\"" + ], + "x-ms-request-id": [ + "ca98f9e2-d58b-42f5-bb23-1442a1eb88ea" + ], + "x-ms-correlation-request-id": [ + "0d7c5e26-87cd-46b9-99ac-e1743b53f9aa" + ], + "x-ms-arm-service-request-id": [ + "8bab3a36-a6b2-461f-93e8-119a5bf9ee6d" + ], + "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:20200507T072924Z:0d7c5e26-87cd-46b9-99ac-e1743b53f9aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:24 GMT" + ], + "Content-Length": [ + "635" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6036\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/publicIPAddresses/ps6036\",\r\n \"etag\": \"W/\\\"80e69130-7e85-43a7-baff-90760d2669c7\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"78e77493-9d88-4cfa-b788-e15cc640740d\",\r\n \"ipAddress\": \"52.253.224.114\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/publicIPAddresses/ps6036?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHM2MDM2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "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\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bda8fdc5-7587-4824-bfab-76baa710ad37" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "177" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "d312bb53-3d0d-49b4-862b-19ae218b1308" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/d312bb53-3d0d-49b4-862b-19ae218b1308?api-version=2020-04-01" + ], + "x-ms-correlation-request-id": [ + "92f428dd-5e01-418e-aa22-4259a0e99ca4" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "812b4cc1-2aa3-449f-ade9-369b9f33ce73" + ], + "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:20200507T072922Z:92f428dd-5e01-418e-aa22-4259a0e99ca4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:22 GMT" + ], + "Content-Length": [ + "598" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps6036\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/publicIPAddresses/ps6036\",\r\n \"etag\": \"W/\\\"73c097f4-2b78-4b72-81bc-d3330878c8be\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"78e77493-9d88-4cfa-b788-e15cc640740d\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/d312bb53-3d0d-49b4-862b-19ae218b1308?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9kMzEyYmI1My0zZDBkLTQ5YjQtODYyYi0xOWFlMjE4YjEzMDg/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ad234312-ce1f-4727-9fa7-85f6adef294c" + ], + "x-ms-correlation-request-id": [ + "7a34e667-c34a-4c75-aaf7-664d3d1ea553" + ], + "x-ms-arm-service-request-id": [ + "5edd3cba-97a6-46fd-aab4-523ff07ef655" + ], + "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:20200507T072924Z:7a34e667-c34a-4c75-aaf7-664d3d1ea553" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHMzNTY4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6464b125-9e0a-4591-993c-9b7e0f35920b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4b746c8a-326b-4a81-8684-1e75ffcb82d7" + ], + "x-ms-correlation-request-id": [ + "4b746c8a-326b-4a81-8684-1e75ffcb82d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T072924Z:4b746c8a-326b-4a81-8684-1e75ffcb82d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:24 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/ps3568' under resource group 'ps3845' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHMzNTY4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"7c3cb8fb-35e7-49a8-aee3-5cd6ebcbf3e7\"" + ], + "x-ms-request-id": [ + "9ae6021c-d682-4164-84a5-e59295344e4e" + ], + "x-ms-correlation-request-id": [ + "307f09ac-c40d-4564-8c87-fe322fcfc0c9" + ], + "x-ms-arm-service-request-id": [ + "dc413d18-482a-450c-9d2b-08b095f6ddfc" + ], + "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:20200507T073240Z:307f09ac-c40d-4564-8c87-fe322fcfc0c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:32:39 GMT" + ], + "Content-Length": [ + "3616" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3568\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568\",\r\n \"etag\": \"W/\\\"7c3cb8fb-35e7-49a8-aee3-5cd6ebcbf3e7\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.EnableProxy\": \"true\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"true\",\r\n \"Network.DNS.Servers\": \"10.10.10.1,20.20.20.2\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"7c3cb8fb-35e7-49a8-aee3-5cd6ebcbf3e7\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/publicIPAddresses/ps6036\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"7c3cb8fb-35e7-49a8-aee3-5cd6ebcbf3e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"networkRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHMzNTY4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9912296b-3c4a-4a8b-8d4f-ba304a0eac89" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"7c3cb8fb-35e7-49a8-aee3-5cd6ebcbf3e7\"" + ], + "x-ms-request-id": [ + "45f94102-fc07-4199-a14d-f7377f33736e" + ], + "x-ms-correlation-request-id": [ + "76b051a0-ae56-4353-bdb0-96e3bc5f0ec5" + ], + "x-ms-arm-service-request-id": [ + "63106de7-608b-4aa2-8820-9391be23e883" + ], + "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:20200507T073240Z:76b051a0-ae56-4353-bdb0-96e3bc5f0ec5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:32:39 GMT" + ], + "Content-Length": [ + "3616" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3568\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568\",\r\n \"etag\": \"W/\\\"7c3cb8fb-35e7-49a8-aee3-5cd6ebcbf3e7\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.EnableProxy\": \"true\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"true\",\r\n \"Network.DNS.Servers\": \"10.10.10.1,20.20.20.2\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"7c3cb8fb-35e7-49a8-aee3-5cd6ebcbf3e7\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/publicIPAddresses/ps6036\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"7c3cb8fb-35e7-49a8-aee3-5cd6ebcbf3e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"networkRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHMzNTY4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0d9e7fc-98a7-4cad-ad90-28b0f5710f1c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"7c3cb8fb-35e7-49a8-aee3-5cd6ebcbf3e7\"" + ], + "x-ms-request-id": [ + "908e0984-62e7-46b6-9a58-a103c90ffc10" + ], + "x-ms-correlation-request-id": [ + "99ff2836-06e8-4426-975f-5f762168fcb4" + ], + "x-ms-arm-service-request-id": [ + "f2721595-5bb6-4e97-98b6-16d2b470ecc6" + ], + "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:20200507T073240Z:99ff2836-06e8-4426-975f-5f762168fcb4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:32:40 GMT" + ], + "Content-Length": [ + "3616" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3568\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568\",\r\n \"etag\": \"W/\\\"7c3cb8fb-35e7-49a8-aee3-5cd6ebcbf3e7\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.EnableProxy\": \"true\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"true\",\r\n \"Network.DNS.Servers\": \"10.10.10.1,20.20.20.2\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"7c3cb8fb-35e7-49a8-aee3-5cd6ebcbf3e7\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/publicIPAddresses/ps6036\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"7c3cb8fb-35e7-49a8-aee3-5cd6ebcbf3e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"networkRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHMzNTY4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"networkRuleCollections\": [\r\n {\r\n \"properties\": {\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ],\r\n \"destinationFqdns\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": []\r\n },\r\n {\r\n \"name\": \"networkRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": []\r\n }\r\n ]\r\n },\r\n \"name\": \"networkRc\"\r\n }\r\n ],\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153/subnets/AzureFirewallSubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/publicIPAddresses/ps6036\"\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 \"Network.DNS.EnableProxy\": \"true\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"true\",\r\n \"Network.DNS.Servers\": \"10.10.10.1,20.20.20.2\"\r\n }\r\n },\r\n \"zones\": [],\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb21e567-883e-448e-a5d2-ab3307e751d0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2486" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "35b04ed9-ebd1-4231-bc9d-86d92ad916a6" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01" + ], + "x-ms-correlation-request-id": [ + "5390dcbe-5946-4e87-9283-5d231faf5f5f" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "e73ee604-604e-461d-b2d9-71f3596aa1d2" + ], + "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:20200507T072927Z:5390dcbe-5946-4e87-9283-5d231faf5f5f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:27 GMT" + ], + "Content-Length": [ + "3571" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3568\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568\",\r\n \"etag\": \"W/\\\"3002214a-8f0b-43c9-b79d-02f162719502\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\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 \"Network.DNS.EnableProxy\": \"true\",\r\n \"Network.DNS.RequireProxyForNetworkRules\": \"true\",\r\n \"Network.DNS.Servers\": \"10.10.10.1,20.20.20.2\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"AzureFirewallIpConfiguration0\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568/azureFirewallIpConfigurations/AzureFirewallIpConfiguration0\",\r\n \"etag\": \"W/\\\"3002214a-8f0b-43c9-b79d-02f162719502\\\"\",\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/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/publicIPAddresses/ps6036\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153/subnets/AzureFirewallSubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": [\r\n {\r\n \"name\": \"networkRc\",\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568/networkRuleCollections/networkRc\",\r\n \"etag\": \"W/\\\"3002214a-8f0b-43c9-b79d-02f162719502\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"priority\": 200,\r\n \"action\": {\r\n \"type\": \"Deny\"\r\n },\r\n \"rules\": [\r\n {\r\n \"name\": \"networkRule\",\r\n \"description\": \"desc1\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [\r\n \"*\"\r\n ],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [],\r\n \"destinationPorts\": [\r\n \"90\"\r\n ]\r\n },\r\n {\r\n \"name\": \"networkRule2\",\r\n \"description\": \"desc2\",\r\n \"protocols\": [\r\n \"UDP\",\r\n \"TCP\",\r\n \"ICMP\"\r\n ],\r\n \"sourceAddresses\": [\r\n \"10.0.0.0\",\r\n \"111.1.0.0/24\"\r\n ],\r\n \"destinationAddresses\": [],\r\n \"sourceIpGroups\": [],\r\n \"destinationIpGroups\": [],\r\n \"destinationFqdns\": [\r\n \"www.bing.com\"\r\n ],\r\n \"destinationPorts\": [\r\n \"80\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\"\r\n }\r\n ],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2c30f6ce-9c27-439f-8c63-67935e0feb2b" + ], + "x-ms-correlation-request-id": [ + "642d001a-7471-40ee-ae61-134e8f81bfb5" + ], + "x-ms-arm-service-request-id": [ + "e2567fc0-7721-4bc8-ba2e-28ab639cfec7" + ], + "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:20200507T072937Z:642d001a-7471-40ee-ae61-134e8f81bfb5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:37 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1a35e26b-4f3e-49f3-9041-8bccec176e3e" + ], + "x-ms-correlation-request-id": [ + "b69339eb-c0e2-4914-b24a-bb8590397fab" + ], + "x-ms-arm-service-request-id": [ + "ccc9e9be-5638-4891-bff7-09987e883ac2" + ], + "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:20200507T072947Z:b69339eb-c0e2-4914-b24a-bb8590397fab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6b90a91b-c070-4e4f-b51d-acd056c7b8dd" + ], + "x-ms-correlation-request-id": [ + "d6a43aaa-39cd-460c-b47b-0425aea69db6" + ], + "x-ms-arm-service-request-id": [ + "234ce32c-62d3-4f9d-93a3-01f29b0b6224" + ], + "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:20200507T072957Z:d6a43aaa-39cd-460c-b47b-0425aea69db6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:29:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "73efe656-d071-4428-820b-e76ceb57e4ba" + ], + "x-ms-correlation-request-id": [ + "0f3d2d05-870b-4f89-913b-21ae39fc9965" + ], + "x-ms-arm-service-request-id": [ + "ef29c323-b67c-40f4-b62a-938476b2fe16" + ], + "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:20200507T073008Z:0f3d2d05-870b-4f89-913b-21ae39fc9965" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:30:07 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "309aa875-41b3-4d18-867c-3f606c79962e" + ], + "x-ms-correlation-request-id": [ + "77d2688b-23d4-4d6c-a74c-5d073e51dfa5" + ], + "x-ms-arm-service-request-id": [ + "5f70b37b-ed15-4f20-9d91-837ed2c1013e" + ], + "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:20200507T073018Z:77d2688b-23d4-4d6c-a74c-5d073e51dfa5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:30:17 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "46e0e39f-cf50-481e-ad0a-afeddfcf3e91" + ], + "x-ms-correlation-request-id": [ + "96e975a2-7e7e-42c2-82a5-881476cd1330" + ], + "x-ms-arm-service-request-id": [ + "d68059e6-75fe-4ec8-99e6-59b92e450fb9" + ], + "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:20200507T073028Z:96e975a2-7e7e-42c2-82a5-881476cd1330" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:30:27 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b5efdcc6-d6f9-44d3-84e0-87f85755567c" + ], + "x-ms-correlation-request-id": [ + "094a9f14-53c1-4f62-a3c9-cc53b98f3770" + ], + "x-ms-arm-service-request-id": [ + "1faa77e4-9b63-42c5-99a2-baa84d263b85" + ], + "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:20200507T073038Z:094a9f14-53c1-4f62-a3c9-cc53b98f3770" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:30:37 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6087852d-f8bc-42c7-9c55-6a6548b26c69" + ], + "x-ms-correlation-request-id": [ + "80857f03-9eef-41bf-87d4-8d636db5b813" + ], + "x-ms-arm-service-request-id": [ + "2d8d72fb-6ae9-4d92-82e8-db93b64261b7" + ], + "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:20200507T073048Z:80857f03-9eef-41bf-87d4-8d636db5b813" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:30:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f1107947-a319-48d7-8c88-f5944afa25b1" + ], + "x-ms-correlation-request-id": [ + "cdc7774a-5dc8-441f-8393-0d6474877932" + ], + "x-ms-arm-service-request-id": [ + "e8156543-ef78-4fcf-ab04-613176773e92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T073058Z:cdc7774a-5dc8-441f-8393-0d6474877932" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:30:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9e8ef9dc-324d-4003-af48-689e01b88a9b" + ], + "x-ms-correlation-request-id": [ + "bfa67ea8-485d-41b5-87f7-c652db4aa7e3" + ], + "x-ms-arm-service-request-id": [ + "c578a6e8-1c44-4caf-8585-85c6c9f66409" + ], + "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:20200507T073108Z:bfa67ea8-485d-41b5-87f7-c652db4aa7e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:31:08 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ac53b6e2-c71d-495c-8c19-ba2c2d4076b7" + ], + "x-ms-correlation-request-id": [ + "66ef03a8-8b4e-4064-bf8d-3b5032aa7a0c" + ], + "x-ms-arm-service-request-id": [ + "de6a2de7-41da-4f13-b6da-c14dfe99c722" + ], + "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:20200507T073118Z:66ef03a8-8b4e-4064-bf8d-3b5032aa7a0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:31:18 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9d48d58b-bc67-4202-90ef-1a6ef596a55a" + ], + "x-ms-correlation-request-id": [ + "d3429408-0d24-4298-a925-f2d3b1f4c7fa" + ], + "x-ms-arm-service-request-id": [ + "6c2cf7ea-5f4c-4300-ba4d-70c53aef1ea5" + ], + "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:20200507T073129Z:d3429408-0d24-4298-a925-f2d3b1f4c7fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:31:28 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c0726a65-667d-43a3-82f7-1442a8b81a11" + ], + "x-ms-correlation-request-id": [ + "aa848a5e-33cf-4a1a-9e12-dad4ca6035af" + ], + "x-ms-arm-service-request-id": [ + "c251f4fd-acce-44af-aca9-f59c864a0e87" + ], + "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:20200507T073139Z:aa848a5e-33cf-4a1a-9e12-dad4ca6035af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:31:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0c6d732f-7dcf-4fe5-a7b2-0881dd3b34d5" + ], + "x-ms-correlation-request-id": [ + "f84b7663-ee03-4dd1-bbf3-0affa22c8ff8" + ], + "x-ms-arm-service-request-id": [ + "06a17cfe-3792-467b-8e80-78a09997c143" + ], + "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:20200507T073149Z:f84b7663-ee03-4dd1-bbf3-0affa22c8ff8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:31:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7000bf00-7f56-4745-b93a-990dd4271367" + ], + "x-ms-correlation-request-id": [ + "968b1496-eb96-4bc2-9f94-d18526c86ee7" + ], + "x-ms-arm-service-request-id": [ + "0ac4d67c-7982-4b70-9cec-6125d638d02d" + ], + "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:20200507T073159Z:968b1496-eb96-4bc2-9f94-d18526c86ee7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:31:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6fc45a54-89ca-4a40-b99a-f8a59f9e0064" + ], + "x-ms-correlation-request-id": [ + "45442188-06b5-4da1-af78-cd90c43d963c" + ], + "x-ms-arm-service-request-id": [ + "eb73d0a3-0901-49d4-900e-14842461673a" + ], + "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:20200507T073209Z:45442188-06b5-4da1-af78-cd90c43d963c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:32:08 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c035ba0f-fb54-41b7-88e9-f453e9a36fd3" + ], + "x-ms-correlation-request-id": [ + "64ef5b0a-eecf-4e86-988e-a249f7709be5" + ], + "x-ms-arm-service-request-id": [ + "a45c7974-5a27-4faf-b27a-31616137fa4f" + ], + "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:20200507T073219Z:64ef5b0a-eecf-4e86-988e-a249f7709be5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:32:18 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bb76c328-f000-4c15-b862-4f8a357e5fc2" + ], + "x-ms-correlation-request-id": [ + "07a70efc-40fb-4a18-bddd-b8b90e019193" + ], + "x-ms-arm-service-request-id": [ + "2c0e65d2-f313-4897-b049-4b115029f470" + ], + "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:20200507T073229Z:07a70efc-40fb-4a18-bddd-b8b90e019193" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:32:28 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/35b04ed9-ebd1-4231-bc9d-86d92ad916a6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8zNWIwNGVkOS1lYmQxLTQyMzEtYmM5ZC04NmQ5MmFkOTE2YTY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8a2826bc-6f2e-4848-8daf-75703d5ba750" + ], + "x-ms-correlation-request-id": [ + "9f438b58-7eeb-46fa-bc5b-483406be2294" + ], + "x-ms-arm-service-request-id": [ + "fd4ff456-0956-478c-bbc3-bb54442e5f4f" + ], + "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:20200507T073239Z:9f438b58-7eeb-46fa-bc5b-483406be2294" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:32:39 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls/ps3568?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvcHMzNTY4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f0076b5-263e-4d08-8564-74cba40f0191" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operationResults/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7422d262-0490-4e9d-b4d1-354e62fb85ef" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01" + ], + "x-ms-correlation-request-id": [ + "16e5c1a5-5119-4414-ae57-3670b87d38df" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "a1856115-51aa-4a59-b4c1-4b8bd0cf65a4" + ], + "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:20200507T073241Z:16e5c1a5-5119-4414-ae57-3670b87d38df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:32:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "61bc75a5-f10d-4df0-9769-037e0618258a" + ], + "x-ms-correlation-request-id": [ + "0d844f76-e8c4-43b6-b4a0-c921c70e1225" + ], + "x-ms-arm-service-request-id": [ + "6baffd17-fd32-4964-a76b-a7f626d40670" + ], + "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:20200507T073252Z:0d844f76-e8c4-43b6-b4a0-c921c70e1225" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:32: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9aee6452-0aa9-46d9-a778-ddaa24b17853" + ], + "x-ms-correlation-request-id": [ + "f1904629-0713-43ce-9b76-9d08deb20485" + ], + "x-ms-arm-service-request-id": [ + "573e14ff-e4c1-4e3e-9d3b-9f8ded8a9a1b" + ], + "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:20200507T073302Z:f1904629-0713-43ce-9b76-9d08deb20485" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:33: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ef70eec1-3106-4e31-9f73-4e5e030e8a92" + ], + "x-ms-correlation-request-id": [ + "6ccfb03b-9263-4281-8aa6-fe2ef1079229" + ], + "x-ms-arm-service-request-id": [ + "6ee08a61-38ff-4670-8ac4-1da432dcd006" + ], + "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:20200507T073312Z:6ccfb03b-9263-4281-8aa6-fe2ef1079229" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:33: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6b737c9e-24b5-4fbf-8abe-2c7b14f63544" + ], + "x-ms-correlation-request-id": [ + "e6f3e4c0-fdf0-4277-98f0-2cb83d6f69ea" + ], + "x-ms-arm-service-request-id": [ + "0bef39c4-d206-464e-aec0-434e76c74082" + ], + "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:20200507T073322Z:e6f3e4c0-fdf0-4277-98f0-2cb83d6f69ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:33: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e978e5f3-5880-45cc-b940-4bc12e78f7c7" + ], + "x-ms-correlation-request-id": [ + "c92cbdc2-100b-4d5c-b150-8f77c007e1ad" + ], + "x-ms-arm-service-request-id": [ + "3a188553-9ab4-4616-9f4d-fddd0fb4c0b1" + ], + "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:20200507T073332Z:c92cbdc2-100b-4d5c-b150-8f77c007e1ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:33: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3b436922-effc-4c31-85cd-8da549972194" + ], + "x-ms-correlation-request-id": [ + "e7481449-e237-4219-a1b5-8f02e2ced98f" + ], + "x-ms-arm-service-request-id": [ + "b0021e1b-3cbe-403c-b16a-d3731edadbde" + ], + "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:20200507T073342Z:e7481449-e237-4219-a1b5-8f02e2ced98f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:33: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "87fd6602-9472-41b8-839d-87964bdf3a24" + ], + "x-ms-correlation-request-id": [ + "356eaf0d-43b6-4687-9469-53dfc980ada5" + ], + "x-ms-arm-service-request-id": [ + "76f4fb54-44a2-44b2-ba7b-69e3181ecfbe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T073352Z:356eaf0d-43b6-4687-9469-53dfc980ada5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:33: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f9004ddd-3911-479c-b1e8-fdc8599a2e4b" + ], + "x-ms-correlation-request-id": [ + "e3ecbab6-20df-40c3-b2f8-ba416ac320df" + ], + "x-ms-arm-service-request-id": [ + "6a3d008c-2339-4d0c-ac67-d656ab5675e4" + ], + "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:20200507T073402Z:e3ecbab6-20df-40c3-b2f8-ba416ac320df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:34: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1cf18242-e6ae-4e51-8bcc-3f73ce027a77" + ], + "x-ms-correlation-request-id": [ + "c4425f4b-0a5c-4847-a28a-ba6b21cfe8a9" + ], + "x-ms-arm-service-request-id": [ + "d45fd330-5207-4ff8-8226-76520d9bd159" + ], + "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:20200507T073413Z:c4425f4b-0a5c-4847-a28a-ba6b21cfe8a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:34: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f5b1c551-40b7-4d25-a21a-d6738d511022" + ], + "x-ms-correlation-request-id": [ + "c9cca378-6fee-4570-a773-8d13ea6f3178" + ], + "x-ms-arm-service-request-id": [ + "5edefe31-2862-42a8-896c-6e1410b535fe" + ], + "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:20200507T073423Z:c9cca378-6fee-4570-a773-8d13ea6f3178" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:34: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3f53c23a-5631-46a6-85cf-4869dc1c9cbb" + ], + "x-ms-correlation-request-id": [ + "10892dc6-dde3-41ef-adc3-af0eb6e06263" + ], + "x-ms-arm-service-request-id": [ + "46ae96e9-dfca-46a0-8bcd-fdd956abc8a3" + ], + "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:20200507T073433Z:10892dc6-dde3-41ef-adc3-af0eb6e06263" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:34:33 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bc7aadf6-f336-47aa-a19a-315e3571ae90" + ], + "x-ms-correlation-request-id": [ + "912d8120-842b-4c76-8b7b-ba7a37e86049" + ], + "x-ms-arm-service-request-id": [ + "418861f2-556b-42a2-84b0-78dc34d21021" + ], + "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:20200507T073443Z:912d8120-842b-4c76-8b7b-ba7a37e86049" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:34:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6f0fa2a3-d1df-4c5e-be2c-4307fa9ee5b5" + ], + "x-ms-correlation-request-id": [ + "7022072b-19e8-4bf5-9a2d-97497c2c078a" + ], + "x-ms-arm-service-request-id": [ + "bb671abf-4b93-486d-9e59-aaea745afb9b" + ], + "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:20200507T073453Z:7022072b-19e8-4bf5-9a2d-97497c2c078a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:34:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5e801778-825c-4b60-8cea-2f6c58324a45" + ], + "x-ms-correlation-request-id": [ + "4505d7eb-694f-47cc-9aaa-dcbc3992a817" + ], + "x-ms-arm-service-request-id": [ + "241bc5e2-0f57-45c7-89e0-a1a3962fc364" + ], + "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:20200507T073503Z:4505d7eb-694f-47cc-9aaa-dcbc3992a817" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:35: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "40ae83fa-3db6-4c6c-a231-fd61e66e900c" + ], + "x-ms-correlation-request-id": [ + "414b8658-7153-4ac1-aeaf-c073dba16ba6" + ], + "x-ms-arm-service-request-id": [ + "edb05b36-7797-43aa-a444-9c3679e2fe16" + ], + "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:20200507T073513Z:414b8658-7153-4ac1-aeaf-c073dba16ba6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:35:13 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7f22e355-d3f9-4324-aff6-5ec7554a1006" + ], + "x-ms-correlation-request-id": [ + "c2302cba-6f87-41c7-ba82-f4c744f96235" + ], + "x-ms-arm-service-request-id": [ + "0b312cd9-34cb-4f13-a927-cad143dfd09a" + ], + "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:20200507T073523Z:c2302cba-6f87-41c7-ba82-f4c744f96235" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:35: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7a4a170e-a7f9-45ed-8f01-acfb6857004b" + ], + "x-ms-correlation-request-id": [ + "975b0649-851d-40f7-9935-461126297a84" + ], + "x-ms-arm-service-request-id": [ + "798e40db-ccc8-48c7-807f-c788dc771eae" + ], + "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:20200507T073534Z:975b0649-851d-40f7-9935-461126297a84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:35: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3463c471-ec93-4542-8156-f5fb9b45daee" + ], + "x-ms-correlation-request-id": [ + "fa857995-9c10-468f-9b82-a1c4fce6dfcc" + ], + "x-ms-arm-service-request-id": [ + "5003c9e7-a22e-4ee9-a045-765511407a94" + ], + "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:20200507T073544Z:fa857995-9c10-468f-9b82-a1c4fce6dfcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:35:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bab8e473-3813-4311-9fb6-c6f7abd5b850" + ], + "x-ms-correlation-request-id": [ + "de3756f5-a006-4517-8f05-fa7f94aa5656" + ], + "x-ms-arm-service-request-id": [ + "2b780c87-b826-48fa-8121-0aabbc39f3ab" + ], + "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:20200507T073554Z:de3756f5-a006-4517-8f05-fa7f94aa5656" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:35: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "644b50d1-2a9a-4618-a932-4c290742f0d4" + ], + "x-ms-correlation-request-id": [ + "b0e024f2-082d-4342-9364-136b55f7f728" + ], + "x-ms-arm-service-request-id": [ + "af3ea5ce-5bdf-4075-aa76-c1467b8614d0" + ], + "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:20200507T073604Z:b0e024f2-082d-4342-9364-136b55f7f728" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:36:04 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a077ba55-a7da-4ea0-aeca-d64f9b4bcc53" + ], + "x-ms-correlation-request-id": [ + "f37c82ff-cd08-4e79-9f73-24f345e6d01a" + ], + "x-ms-arm-service-request-id": [ + "a34d7b8a-5979-4289-92d3-eb85e3905c32" + ], + "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:20200507T073614Z:f37c82ff-cd08-4e79-9f73-24f345e6d01a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:36:14 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "80b159aa-116b-4b53-b1fe-20d12de71290" + ], + "x-ms-correlation-request-id": [ + "b942c30a-3e3d-47ec-b049-eeb1d6449172" + ], + "x-ms-arm-service-request-id": [ + "c8f09117-7ac5-4959-83be-b7b65487d951" + ], + "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:20200507T073624Z:b942c30a-3e3d-47ec-b049-eeb1d6449172" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:36:24 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6352192b-fe08-467c-bb17-6e9829062338" + ], + "x-ms-correlation-request-id": [ + "3e0adf7a-8c89-4370-b0fc-7cc13f2f2c44" + ], + "x-ms-arm-service-request-id": [ + "66eb7474-2dfe-4d92-8681-7384fbc2715c" + ], + "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:20200507T073634Z:3e0adf7a-8c89-4370-b0fc-7cc13f2f2c44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:36:34 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2d769449-080a-4197-874f-a63741d728a8" + ], + "x-ms-correlation-request-id": [ + "b38fdc31-c3c7-4752-8a04-a5068131ce29" + ], + "x-ms-arm-service-request-id": [ + "481517ce-3139-4228-9588-c1ce491c0aec" + ], + "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:20200507T073644Z:b38fdc31-c3c7-4752-8a04-a5068131ce29" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:36:44 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5d9eef38-b752-4d12-907e-ff38b0b91f84" + ], + "x-ms-correlation-request-id": [ + "205a0cd4-bd8a-4123-86f4-0749f51f7afd" + ], + "x-ms-arm-service-request-id": [ + "99c78fb9-b0af-445d-ae5f-eba497783fd9" + ], + "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:20200507T073654Z:205a0cd4-bd8a-4123-86f4-0749f51f7afd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:36:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "42fcd40f-3253-4b61-a81b-1c8ac246014f" + ], + "x-ms-correlation-request-id": [ + "8941ed79-b9f6-4148-999c-703aa4477e80" + ], + "x-ms-arm-service-request-id": [ + "9f66eda2-d607-43a3-8160-e3961d655d82" + ], + "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:20200507T073705Z:8941ed79-b9f6-4148-999c-703aa4477e80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:37:04 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b75a0439-f162-4df0-b760-6e3c854024f0" + ], + "x-ms-correlation-request-id": [ + "09635f89-9b85-4315-984e-0624e04f7e1d" + ], + "x-ms-arm-service-request-id": [ + "167e6e9b-3d9f-40dc-b05b-bb9d8a14a838" + ], + "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:20200507T073715Z:09635f89-9b85-4315-984e-0624e04f7e1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:37:14 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e23c91f1-53e3-405f-9de3-8484ed5730a6" + ], + "x-ms-correlation-request-id": [ + "e3ddffb3-8257-4985-9237-496b9254876a" + ], + "x-ms-arm-service-request-id": [ + "6cd47858-fbf3-40a2-93b1-9c957d93487b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T073725Z:e3ddffb3-8257-4985-9237-496b9254876a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:37: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1b33e5ff-f575-485e-aaa7-3c9cb1b625f5" + ], + "x-ms-correlation-request-id": [ + "bac4bf36-4eed-48a6-82b1-908a613db64c" + ], + "x-ms-arm-service-request-id": [ + "608b10f7-6958-435b-9b07-700cc2e57d93" + ], + "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:20200507T073735Z:bac4bf36-4eed-48a6-82b1-908a613db64c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:37: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4a8feafe-a6ff-4bd5-a274-5e71e637f659" + ], + "x-ms-correlation-request-id": [ + "659b5748-d9d0-4551-90c9-7e21876b7460" + ], + "x-ms-arm-service-request-id": [ + "06396a93-8d36-47f7-aec4-909993a2d723" + ], + "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:20200507T073745Z:659b5748-d9d0-4551-90c9-7e21876b7460" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:37: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "185cd978-7201-49b5-afcf-0e32eaa9514c" + ], + "x-ms-correlation-request-id": [ + "0ec76d67-4edb-4fdb-a8ea-3be1febe1817" + ], + "x-ms-arm-service-request-id": [ + "79ac5f48-dc01-4e6a-a2b0-f865b19199ce" + ], + "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:20200507T073755Z:0ec76d67-4edb-4fdb-a8ea-3be1febe1817" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:37: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "143cdf24-6e10-4f84-ba62-36120cb25002" + ], + "x-ms-correlation-request-id": [ + "ea27d053-537c-4f0a-9674-61f659b38c1b" + ], + "x-ms-arm-service-request-id": [ + "05cb6974-781c-4db6-a45d-26d3de03eace" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T073805Z:ea27d053-537c-4f0a-9674-61f659b38c1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:38: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2f60e9e7-a8c2-4323-96f4-4e2703425d98" + ], + "x-ms-correlation-request-id": [ + "b46bf5d4-03dc-40a2-857d-0dd16947a4dd" + ], + "x-ms-arm-service-request-id": [ + "7a33963f-720d-48d7-b13b-db8d3d5383ad" + ], + "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:20200507T073815Z:b46bf5d4-03dc-40a2-857d-0dd16947a4dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:38: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5249c786-f214-48b2-9027-cd0a3a392eb9" + ], + "x-ms-correlation-request-id": [ + "ed8773a7-d6cf-4357-b8b9-a5a669816d49" + ], + "x-ms-arm-service-request-id": [ + "8d238cdf-5d0e-4f6f-a2ea-c0c5ddb48422" + ], + "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:20200507T073826Z:ed8773a7-d6cf-4357-b8b9-a5a669816d49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:38: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6ea3f541-e29e-4417-ada2-c1a8300d07f1" + ], + "x-ms-correlation-request-id": [ + "c1787f7b-d2a8-4b35-9318-49cf4fee9d49" + ], + "x-ms-arm-service-request-id": [ + "c58dee00-7575-491f-a5e8-481ce7dd41f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T073836Z:c1787f7b-d2a8-4b35-9318-49cf4fee9d49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:38: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d8e45941-7664-4f0d-8770-85cb9f2bc8b3" + ], + "x-ms-correlation-request-id": [ + "8f9a9b23-4478-4b1a-b2ad-f0bae55f16e5" + ], + "x-ms-arm-service-request-id": [ + "682485c6-ee4e-48ea-993f-a3fbca7ca1bf" + ], + "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:20200507T073846Z:8f9a9b23-4478-4b1a-b2ad-f0bae55f16e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:38: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1502ad57-a9c2-45df-96b2-e0f56e95ad45" + ], + "x-ms-correlation-request-id": [ + "e06ab276-9ff3-488a-9b9b-2674e0258a8a" + ], + "x-ms-arm-service-request-id": [ + "1122a1c0-9c56-41cc-b91d-8c27297adc4c" + ], + "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:20200507T073856Z:e06ab276-9ff3-488a-9b9b-2674e0258a8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:38: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f53aeaa9-97dc-47c9-bfb7-6c68ce39494d" + ], + "x-ms-correlation-request-id": [ + "211264d0-b705-4c1a-bb74-7ea4a50c6499" + ], + "x-ms-arm-service-request-id": [ + "385d4117-6529-4cab-ac26-8cb8f764aeca" + ], + "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:20200507T073906Z:211264d0-b705-4c1a-bb74-7ea4a50c6499" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:39: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4f11b0aa-03f1-40bb-bf52-d20608392197" + ], + "x-ms-correlation-request-id": [ + "1efce79f-2687-403b-8921-4572e56f20e2" + ], + "x-ms-arm-service-request-id": [ + "c3616d9d-b5a7-4d74-813c-b0baf86dfd63" + ], + "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:20200507T073916Z:1efce79f-2687-403b-8921-4572e56f20e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:39: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "eb5b0173-9182-4bcf-aa03-926afe0ce644" + ], + "x-ms-correlation-request-id": [ + "d29c17fb-c5d4-4096-9d66-42c535ebb780" + ], + "x-ms-arm-service-request-id": [ + "80859276-7040-49fa-9f1a-9a56d8b940ff" + ], + "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:20200507T073926Z:d29c17fb-c5d4-4096-9d66-42c535ebb780" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:39: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "20a3935d-ea4b-4a38-89b7-c1bead321142" + ], + "x-ms-correlation-request-id": [ + "71ef8c0c-4fbc-46bb-b665-16d960c2f436" + ], + "x-ms-arm-service-request-id": [ + "c25e454d-6ad6-4a4d-afc7-a72b413102cd" + ], + "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:20200507T073936Z:71ef8c0c-4fbc-46bb-b665-16d960c2f436" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:39:36 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5f75a7e3-1605-4fe1-b360-184f9ece3dee" + ], + "x-ms-correlation-request-id": [ + "cdd59a0b-eb33-48d6-acca-868deeb41b39" + ], + "x-ms-arm-service-request-id": [ + "954b08d2-e5e7-4e73-acb3-a79ced62637e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T073946Z:cdd59a0b-eb33-48d6-acca-868deeb41b39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:39: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/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "004a0d36-bd6a-4ee6-be9c-994c0cfc7e3f" + ], + "x-ms-correlation-request-id": [ + "bea97c7a-69b7-4d80-9c49-d6c7386a4add" + ], + "x-ms-arm-service-request-id": [ + "59068b5a-f5d7-4f92-95f3-fd8ef13a1d7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T073957Z:bea97c7a-69b7-4d80-9c49-d6c7386a4add" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:39:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "59af75f2-6d91-4f86-afd6-2e6245e7bc78" + ], + "x-ms-correlation-request-id": [ + "3d8521c2-5911-42df-a574-d9a7ffd9a40c" + ], + "x-ms-arm-service-request-id": [ + "b71a5ca6-5f0d-4b9a-a57b-96098555910c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074007Z:3d8521c2-5911-42df-a574-d9a7ffd9a40c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:40:07 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ac5c4ee3-259f-44dc-8d47-08004aac1d3e" + ], + "x-ms-correlation-request-id": [ + "c02dbeec-225b-48af-918e-e37de9ccd9cd" + ], + "x-ms-arm-service-request-id": [ + "d2587dd4-612b-4ab0-b1e8-d1c947be7d87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074017Z:c02dbeec-225b-48af-918e-e37de9ccd9cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:40:17 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "09110b60-2065-4d69-86ae-95de681da950" + ], + "x-ms-correlation-request-id": [ + "3ea0d71f-5bfa-479f-bf29-039884755ac8" + ], + "x-ms-arm-service-request-id": [ + "db3882ec-920e-4e35-b40d-9578bb997dec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074027Z:3ea0d71f-5bfa-479f-bf29-039884755ac8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:40:27 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fdbb8963-cd6e-4ca4-b553-b117754da4ba" + ], + "x-ms-correlation-request-id": [ + "a11cc4fd-74e6-4338-b472-fe772b0421f9" + ], + "x-ms-arm-service-request-id": [ + "30352652-6b89-477c-891e-fd12793aff17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074037Z:a11cc4fd-74e6-4338-b472-fe772b0421f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:40:37 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "976438a3-0bcd-4a4b-80d4-e35c9630c0bf" + ], + "x-ms-correlation-request-id": [ + "a326ff01-cc02-4f8f-91ed-8cf5928a11ab" + ], + "x-ms-arm-service-request-id": [ + "d8191a25-c3bf-4097-93b4-0b94188e5d6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074047Z:a326ff01-cc02-4f8f-91ed-8cf5928a11ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:40:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6cb63779-28f5-433e-8ab2-49a0c4350242" + ], + "x-ms-correlation-request-id": [ + "c3e17444-c416-4036-b775-40144dfa7919" + ], + "x-ms-arm-service-request-id": [ + "63786599-6401-496a-8b89-da4ce5dd3c59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074057Z:c3e17444-c416-4036-b775-40144dfa7919" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:40:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "82711f42-f0ba-4a80-bcbd-dcaea9ec0c01" + ], + "x-ms-correlation-request-id": [ + "df48b8d3-e8ca-4379-af1e-54b68ce8dc72" + ], + "x-ms-arm-service-request-id": [ + "430b8657-9c0a-43ee-b7ae-0c6e5e9321b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074108Z:df48b8d3-e8ca-4379-af1e-54b68ce8dc72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:41:07 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "29bd1098-555e-43b1-9bea-7ffaf45f31ff" + ], + "x-ms-correlation-request-id": [ + "128d1f9d-deab-4dce-bcc3-1a16818c1ffa" + ], + "x-ms-arm-service-request-id": [ + "db940801-b920-492a-adcb-ccb260f70e7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074118Z:128d1f9d-deab-4dce-bcc3-1a16818c1ffa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:41:18 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4af94dc2-9eed-4ec0-8a90-2c1022e6f664" + ], + "x-ms-correlation-request-id": [ + "4c3c86f2-6709-4297-a106-f0a8392a746b" + ], + "x-ms-arm-service-request-id": [ + "39e81cfe-6b42-4eed-911c-09a2cd5ef94c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074128Z:4c3c86f2-6709-4297-a106-f0a8392a746b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:41:28 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0742abc2-aec4-475f-975c-7f23ada842b3" + ], + "x-ms-correlation-request-id": [ + "8dcfca6a-222e-4464-9945-ab3224593750" + ], + "x-ms-arm-service-request-id": [ + "d9529b2e-e2db-4099-b4bd-8ef7a1e4d645" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074138Z:8dcfca6a-222e-4464-9945-ab3224593750" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:41:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a0ed6e6b-bb00-4702-95f8-c2a6ccf30321" + ], + "x-ms-correlation-request-id": [ + "23a6ad8e-7339-43ac-a823-9f02a04ced4b" + ], + "x-ms-arm-service-request-id": [ + "65b11e66-d325-4407-ad03-341110f1667f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074148Z:23a6ad8e-7339-43ac-a823-9f02a04ced4b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:41:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d6f9fa6c-e462-4a74-867c-4cd4949ae240" + ], + "x-ms-correlation-request-id": [ + "ebe7da5b-d028-4ae6-a2d0-3f52805b9aed" + ], + "x-ms-arm-service-request-id": [ + "cb865c45-b5c3-4245-8b74-77b134f77720" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074158Z:ebe7da5b-d028-4ae6-a2d0-3f52805b9aed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:41:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "73933a08-45dd-4f98-bb15-94c6670a1f30" + ], + "x-ms-correlation-request-id": [ + "58298dcd-4f58-4c91-ab9f-a1cef0f9df2e" + ], + "x-ms-arm-service-request-id": [ + "65fc849e-236e-4842-8242-64fab5f5a7c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074208Z:58298dcd-4f58-4c91-ab9f-a1cef0f9df2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:42:08 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8812d4dd-c203-45d2-a48d-b2841a293c5f" + ], + "x-ms-correlation-request-id": [ + "e6c8f068-65d6-402a-94db-ed49a522bd22" + ], + "x-ms-arm-service-request-id": [ + "bf95195e-12a0-4e50-8818-8a7c8875a53a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074219Z:e6c8f068-65d6-402a-94db-ed49a522bd22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:42:18 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3afe7a9f-3235-426e-b96f-9c786f5dcb51" + ], + "x-ms-correlation-request-id": [ + "26b98ab8-cb4d-4e74-9398-ef2c3e18f9ff" + ], + "x-ms-arm-service-request-id": [ + "9656858f-2349-4517-a5bd-fd625d50b6d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074229Z:26b98ab8-cb4d-4e74-9398-ef2c3e18f9ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:42:28 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "843e97fb-8fed-473a-913a-305626f2ad0d" + ], + "x-ms-correlation-request-id": [ + "c99cdbfe-86d7-450e-9f9a-f9244e54becf" + ], + "x-ms-arm-service-request-id": [ + "95d941ea-78dd-4766-aee8-e592fbaa9c9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074239Z:c99cdbfe-86d7-450e-9f9a-f9244e54becf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:42:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "18a67c77-01de-4ffc-8d02-73bf7ae8757d" + ], + "x-ms-correlation-request-id": [ + "e92d2a10-6b05-44df-a3e4-5c6b9d933ce1" + ], + "x-ms-arm-service-request-id": [ + "9b9dbdc3-8e14-4447-a6ae-819e9a520903" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074249Z:e92d2a10-6b05-44df-a3e4-5c6b9d933ce1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:42:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "395c2392-a10e-4214-b77a-06f9ffd67853" + ], + "x-ms-correlation-request-id": [ + "3d573535-e2a5-4f6e-bd8f-4d4645a1e7b0" + ], + "x-ms-arm-service-request-id": [ + "107684b2-881b-4f23-86bc-3685807349cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074259Z:3d573535-e2a5-4f6e-bd8f-4d4645a1e7b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:42:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7b1570bf-2bce-4e32-930c-237d3b773afc" + ], + "x-ms-correlation-request-id": [ + "65720d76-0c77-48c0-bfde-1c34ce022e96" + ], + "x-ms-arm-service-request-id": [ + "b9818883-8ed5-4c04-9b7b-110e5ae756d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074309Z:65720d76-0c77-48c0-bfde-1c34ce022e96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:43:09 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f7ef4e17-a4fe-4d0e-9f8a-c1fe46d6c1ee" + ], + "x-ms-correlation-request-id": [ + "0db92e29-f1e1-4b3e-beca-e44b5fd2be7c" + ], + "x-ms-arm-service-request-id": [ + "3b865749-cc86-4005-b0f9-6f4bbaf8f623" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074319Z:0db92e29-f1e1-4b3e-beca-e44b5fd2be7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:43:19 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e309c680-f07b-44d8-a322-17304e98760b" + ], + "x-ms-correlation-request-id": [ + "16751f09-e11b-4d0e-b1d5-e44c09a2886b" + ], + "x-ms-arm-service-request-id": [ + "8198eb08-eca7-4524-bfbe-99e8cd9e812b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074330Z:16751f09-e11b-4d0e-b1d5-e44c09a2886b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:43:29 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bf33d301-28f0-4ea4-98d8-0001b0d91f8a" + ], + "x-ms-correlation-request-id": [ + "bc21c808-0323-4f22-a697-8dd1e75ad268" + ], + "x-ms-arm-service-request-id": [ + "4d7639cf-0f8b-4dcb-82aa-055790c71a31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074340Z:bc21c808-0323-4f22-a697-8dd1e75ad268" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:43:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3975d291-c1b1-4d64-8a6b-685f38771993" + ], + "x-ms-correlation-request-id": [ + "e9affa8b-b2e1-4eca-8016-dc92bef62b8a" + ], + "x-ms-arm-service-request-id": [ + "fed7c40c-da9b-4d34-b8dd-0936d6459511" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074350Z:e9affa8b-b2e1-4eca-8016-dc92bef62b8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:43:49 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operationResults/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9uUmVzdWx0cy83NDIyZDI2Mi0wNDkwLTRlOWQtYjRkMS0zNTRlNjJmYjg1ZWY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operationResults/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01" + ], + "x-ms-request-id": [ + "7422d262-0490-4e9d-b4d1-354e62fb85ef" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/7422d262-0490-4e9d-b4d1-354e62fb85ef?api-version=2020-04-01" + ], + "x-ms-correlation-request-id": [ + "16e5c1a5-5119-4414-ae57-3670b87d38df" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "a1856115-51aa-4a59-b4c1-4b8bd0cf65a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074350Z:f4dff85f-04b2-43b7-a8fa-2277a6a853c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:43:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/virtualNetworks/ps7153?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzNzE1Mz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1dad1cf2-c577-4cf6-bc22-ab9f910c310d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operationResults/8b7adaa1-781a-4294-9f46-40196aa0bcb6?api-version=2020-04-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8b7adaa1-781a-4294-9f46-40196aa0bcb6" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/8b7adaa1-781a-4294-9f46-40196aa0bcb6?api-version=2020-04-01" + ], + "x-ms-correlation-request-id": [ + "b53ad607-43fd-48db-a124-c7ff5e28630c" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "98f0d8ab-7534-4dc7-afc2-1655253b2125" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074350Z:b53ad607-43fd-48db-a124-c7ff5e28630c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:43:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/8b7adaa1-781a-4294-9f46-40196aa0bcb6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy84YjdhZGFhMS03ODFhLTQyOTQtOWY0Ni00MDE5NmFhMGJjYjY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "29deddd1-b533-4fb6-8e47-f54b4e7cd29c" + ], + "x-ms-correlation-request-id": [ + "d2ec1572-2c28-41d0-806b-649d76158e05" + ], + "x-ms-arm-service-request-id": [ + "6b36f2c6-8049-4517-a008-5e7587512340" + ], + "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:20200507T074401Z:d2ec1572-2c28-41d0-806b-649d76158e05" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:44:00 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operationResults/8b7adaa1-781a-4294-9f46-40196aa0bcb6?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9uUmVzdWx0cy84YjdhZGFhMS03ODFhLTQyOTQtOWY0Ni00MDE5NmFhMGJjYjY/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operationResults/8b7adaa1-781a-4294-9f46-40196aa0bcb6?api-version=2020-04-01" + ], + "x-ms-request-id": [ + "8b7adaa1-781a-4294-9f46-40196aa0bcb6" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/eastus2euap/operations/8b7adaa1-781a-4294-9f46-40196aa0bcb6?api-version=2020-04-01" + ], + "x-ms-correlation-request-id": [ + "b53ad607-43fd-48db-a124-c7ff5e28630c" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "98f0d8ab-7534-4dc7-afc2-1655253b2125" + ], + "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:20200507T074401Z:f4718cc8-96b2-4e8c-a2ed-0d7c55b03a13" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:44:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps3845/providers/Microsoft.Network/azureFirewalls?api-version=2020-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzMzg0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHM/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e7d9826-2b65-4656-9354-3eacf30bbc90" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "d150fbf5-2c95-4b0d-8b89-bbd2dddd4239" + ], + "x-ms-correlation-request-id": [ + "d150fbf5-2c95-4b0d-8b89-bbd2dddd4239" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074401Z:d150fbf5-2c95-4b0d-8b89-bbd2dddd4239" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:44:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/ps3845?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlZ3JvdXBzL3BzMzg0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52adeb49-ea37-4c8e-9319-3db22927963b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "f173bb2a-f9ba-48ac-88c0-a1dc02af2572" + ], + "x-ms-correlation-request-id": [ + "f173bb2a-f9ba-48ac-88c0-a1dc02af2572" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074403Z:f173bb2a-f9ba-48ac-88c0-a1dc02af2572" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:44:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "281c5906-8b22-4867-b020-141f80e24425" + ], + "x-ms-correlation-request-id": [ + "281c5906-8b22-4867-b020-141f80e24425" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074419Z:281c5906-8b22-4867-b020-141f80e24425" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:44:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "ed66a2ef-a430-409e-ae35-9538ac4504de" + ], + "x-ms-correlation-request-id": [ + "ed66a2ef-a430-409e-ae35-9538ac4504de" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074434Z:ed66a2ef-a430-409e-ae35-9538ac4504de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:44:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "445cef41-e0b8-4bdb-bd61-54edf7f26f2a" + ], + "x-ms-correlation-request-id": [ + "445cef41-e0b8-4bdb-bd61-54edf7f26f2a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074449Z:445cef41-e0b8-4bdb-bd61-54edf7f26f2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:44:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "1e69b0c5-6756-4c09-9b66-6f6b9ddccc33" + ], + "x-ms-correlation-request-id": [ + "1e69b0c5-6756-4c09-9b66-6f6b9ddccc33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074504Z:1e69b0c5-6756-4c09-9b66-6f6b9ddccc33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:45:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "4000a7dd-a8cb-4673-9ffe-cacd651380e1" + ], + "x-ms-correlation-request-id": [ + "4000a7dd-a8cb-4673-9ffe-cacd651380e1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074519Z:4000a7dd-a8cb-4673-9ffe-cacd651380e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:45:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "53fa764b-009f-44cb-bded-46d6d3ec9a2b" + ], + "x-ms-correlation-request-id": [ + "53fa764b-009f-44cb-bded-46d6d3ec9a2b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074534Z:53fa764b-009f-44cb-bded-46d6d3ec9a2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:45:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "e26330cb-f270-4ccb-9198-0a981da174f7" + ], + "x-ms-correlation-request-id": [ + "e26330cb-f270-4ccb-9198-0a981da174f7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074550Z:e26330cb-f270-4ccb-9198-0a981da174f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:45:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "324b6022-3b03-42d0-ac72-ac5eec14f60c" + ], + "x-ms-correlation-request-id": [ + "324b6022-3b03-42d0-ac72-ac5eec14f60c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074605Z:324b6022-3b03-42d0-ac72-ac5eec14f60c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:46:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "0b188ebb-598a-4226-a112-acc5d1ea68e2" + ], + "x-ms-correlation-request-id": [ + "0b188ebb-598a-4226-a112-acc5d1ea68e2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074620Z:0b188ebb-598a-4226-a112-acc5d1ea68e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:46:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "a9620669-571b-4a4b-bba5-5dae64e38008" + ], + "x-ms-correlation-request-id": [ + "a9620669-571b-4a4b-bba5-5dae64e38008" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074635Z:a9620669-571b-4a4b-bba5-5dae64e38008" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:46:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "7450b875-1645-4a2b-a9c2-4affd42a375f" + ], + "x-ms-correlation-request-id": [ + "7450b875-1645-4a2b-a9c2-4affd42a375f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074650Z:7450b875-1645-4a2b-a9c2-4affd42a375f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:46:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "aa78eb33-17e1-4bce-be8e-34b0bfd68cd8" + ], + "x-ms-correlation-request-id": [ + "aa78eb33-17e1-4bce-be8e-34b0bfd68cd8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074705Z:aa78eb33-17e1-4bce-be8e-34b0bfd68cd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:47:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "e0d678bb-1b72-4418-bc98-d14353ecb809" + ], + "x-ms-correlation-request-id": [ + "e0d678bb-1b72-4418-bc98-d14353ecb809" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074720Z:e0d678bb-1b72-4418-bc98-d14353ecb809" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:47:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "5251c438-b31b-4340-bf83-d02021b7b223" + ], + "x-ms-correlation-request-id": [ + "5251c438-b31b-4340-bf83-d02021b7b223" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074736Z:5251c438-b31b-4340-bf83-d02021b7b223" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:47:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NDUtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5EVXRSVUZUVkZWVE1rVlZRVkFpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "1415a941-bfa8-4574-ba85-dc861a734182" + ], + "x-ms-correlation-request-id": [ + "1415a941-bfa8-4574-ba85-dc861a734182" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200507T074736Z:1415a941-bfa8-4574-ba85-dc861a734182" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 07 May 2020 07:47:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-AzureFirewallWithDNSProxy": [ + "ps3845", + "ps3568", + "ps7153", + "ps6036" + ] + }, + "Variables": { + "SubscriptionId": "aeb5b02a-0f18-45a4-86d6-81808115cacf" + } +} \ No newline at end of file diff --git a/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs b/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs index 375e09ab9ca5..401512e3a1bb 100644 --- a/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs +++ b/src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs @@ -154,6 +154,24 @@ public class NewAzureFirewallCommand : AzureFirewallBaseCmdlet )] public string[] PrivateRange { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "Enable DNS Proxy. By default it is disabled." + )] + public SwitchParameter EnableDnsProxy { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Requires DNS Proxy functionality for FQDNs within Network Rules. By default is is enabled." + )] + public SwitchParameter DnsProxyNotRequiredForNetworkRule { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The list of DNS Servers" + )] + public string[] DnsServer { get; set; } + [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, @@ -278,6 +296,9 @@ private PSAzureFirewall CreateAzureFirewall() ThreatIntelMode = this.ThreatIntelMode ?? MNM.AzureFirewallThreatIntelMode.Alert, ThreatIntelWhitelist = this.ThreatIntelWhitelist, PrivateRange = this.PrivateRange, + DNSEnableProxy = (this.EnableDnsProxy.IsPresent? "true" : "false"), + DNSRequireProxyForNetworkRules = (this.DnsProxyNotRequiredForNetworkRule.IsPresent ? "false" : "true"), + DNSServer = this.DnsServer, Sku = sku }; @@ -290,6 +311,8 @@ private PSAzureFirewall CreateAzureFirewall() { firewall.Allocate(this.virtualNetwork, this.publicIpAddresses, this.ManagementPublicIpAddress); } + + firewall.ValidateDNSProxyRequirements(); } // Map to the sdk object diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 8ea0f884274c..a55ab2673ccf 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -40,6 +40,10 @@ - `New-AzPrivateDnsZoneGroup` - `Set-AzPrivateDnsZoneGroup` - `Remove-AzPrivateDnsZoneGroup` +* Add `DNSEnableProxy`, 'DNSRequireProxyForNetworkRules' and 'DNSServers' parameters to `AzureFirewall` +* Add `EnableDnsProxy`, 'DnsProxyNotRequiredForNetworkRule' and 'DnsServer' parameters to `AzureFirewall` + - Updated cmdlet: + - New-AzFirewall ## Version 2.5.0 * Updated cmdlets to enable connection on private IP for Virtual Network Gateway. diff --git a/src/Network/Network/Common/NetworkResourceManagerProfile.cs b/src/Network/Network/Common/NetworkResourceManagerProfile.cs index 29e5ffdb0f08..bfafe60760ad 100644 --- a/src/Network/Network/Common/NetworkResourceManagerProfile.cs +++ b/src/Network/Network/Common/NetworkResourceManagerProfile.cs @@ -1197,7 +1197,10 @@ private static void Initialize() { { "ThreatIntel.Whitelist.FQDNs", src.ThreatIntelWhitelist?.FQDNs?.Aggregate((result, item) => result + "," + item) }, { "ThreatIntel.Whitelist.IpAddresses", src.ThreatIntelWhitelist?.IpAddresses?.Aggregate((result, item) => result + "," + item) }, - { "Network.SNAT.PrivateRanges", src.PrivateRange?.Aggregate((result, item) => result + "," + item) } + { "Network.SNAT.PrivateRanges", src.PrivateRange?.Aggregate((result, item) => result + "," + item) }, + { "Network.DNS.EnableProxy", src.DNSEnableProxy }, + { "Network.DNS.RequireProxyForNetworkRules", src.DNSRequireProxyForNetworkRules }, + { "Network.DNS.Servers", src.DNSServer?.Aggregate((result, item) => result + "," + item) } }.Where(kvp => kvp.Value != null).ToDictionary(key => key.Key, val => val.Value); // TODO: remove after backend code is refactored }); cfg.CreateMap(); @@ -1239,7 +1242,17 @@ private static void Initialize() } catch (PSArgumentException) { - dest.ThreatIntelWhitelist.IpAddresses = null; + dest.PrivateRange = null; + } + dest.DNSEnableProxy = src.AdditionalProperties?.SingleOrDefault(kvp => kvp.Key.Equals("Network.DNS.EnableProxy", StringComparison.OrdinalIgnoreCase)).Value; + dest.DNSRequireProxyForNetworkRules = src.AdditionalProperties?.SingleOrDefault(kvp => kvp.Key.Equals("Network.DNS.RequireProxyForNetworkRules", StringComparison.OrdinalIgnoreCase)).Value; + try + { + dest.DNSServer = src.AdditionalProperties?.SingleOrDefault(kvp => kvp.Key.Equals("Network.DNS.Servers", StringComparison.OrdinalIgnoreCase)).Value?.Split(',').Select(str => str.Trim()).ToArray(); + } + catch (PSArgumentException) + { + dest.DNSServer = null; } }); cfg.CreateMap(); diff --git a/src/Network/Network/Models/AzureFirewall/PSAzureFirewall.cs b/src/Network/Network/Models/AzureFirewall/PSAzureFirewall.cs index 737b86b4dd52..3864f4d230d1 100644 --- a/src/Network/Network/Models/AzureFirewall/PSAzureFirewall.cs +++ b/src/Network/Network/Models/AzureFirewall/PSAzureFirewall.cs @@ -66,6 +66,12 @@ public string[] PrivateRange { } } + public string DNSEnableProxy { get; set; } + + public string DNSRequireProxyForNetworkRules { get; set; } + + public string[] DNSServer { get; set; } + public string ProvisioningState { get; set; } public List Zones { get; set; } @@ -112,6 +118,12 @@ public string PrivateRangeText get { return JsonConvert.SerializeObject(PrivateRange, Formatting.Indented); } } + [JsonIgnore] + public string DNSServersText + { + get { return JsonConvert.SerializeObject(DNSServer, Formatting.Indented); } + } + #region Ip Configuration Operations public void Allocate(PSVirtualNetwork virtualNetwork, PSPublicIpAddress[] publicIpAddresses, PSPublicIpAddress ManagementPublicIpAddress = null) @@ -396,6 +408,45 @@ private void ValidateMaskedIpAddress(string ipAddress) #endregion + #region DNS Proxy Validation + + public void ValidateDNSProxyRequirements() + { + if (string.Equals(this.DNSEnableProxy, "true", StringComparison.OrdinalIgnoreCase)) + { + // Nothing to validate since they have enabled DNS Proxy + return; + } + + if (string.Equals(this.DNSRequireProxyForNetworkRules, "false", StringComparison.OrdinalIgnoreCase)) + { + // Nothing to validate since both DNS Proxy and Requiring Proxy for Network Rules is disabled + return; + } + + // Need to check if any Network Rules have FQDNs + var netRuleCollections = this.NetworkRuleCollections?.Where(rc => rc?.Rules != null && rc.Rules.Any()).ToList(); + if (netRuleCollections == null) + { + // No network rules so nothing to do + return; + } + + foreach (var netRuleCollection in netRuleCollections) + { + foreach (var rule in netRuleCollection.Rules) + { + if (rule?.DestinationFqdns != null && rule.DestinationFqdns.Any()) + { + throw new PSArgumentException(string.Format("Found FQDNs {0} in network rule collection {1} rule {2} without DNS proxy being enabled or requirement setting disabled", + rule.DestinationFqdns, netRuleCollection.Name, rule.Name)); + } + } + } + } + + #endregion + #region Private Methods private List AddRuleCollection(BaseRuleCollection ruleCollection, List existingRuleCollections) where BaseRuleCollection : PSAzureFirewallBaseRuleCollection diff --git a/src/Network/Network/help/New-AzFirewall.md b/src/Network/Network/help/New-AzFirewall.md index 6aac9adac349..304bf8d447fc 100644 --- a/src/Network/Network/help/New-AzFirewall.md +++ b/src/Network/Network/help/New-AzFirewall.md @@ -19,9 +19,11 @@ New-AzFirewall -Name -ResourceGroupName -Location [-ApplicationRuleCollection ] [-NatRuleCollection ] [-NetworkRuleCollection ] [-ThreatIntelMode ] - [-ThreatIntelWhitelist ] [-PrivateRange ] [-Tag ] - [-Force] [-AsJob] [-Zone ] [-Sku ] [-VirtualHubId ] [-FirewallPolicyId ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ThreatIntelWhitelist ] [-PrivateRange ] + [-EnableDnsProxy] [-DNSRequireProxyForNetworkRules ] [-DnsServer ] + [-Tag ] [-Force] [-AsJob] [-Zone ] [-Sku ] [-VirtualHubId ] + [-FirewallPolicyId ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### OldIpConfigurationParameterValues @@ -30,9 +32,11 @@ New-AzFirewall -Name -ResourceGroupName -Location -Vi -PublicIpName [-ApplicationRuleCollection ] [-NatRuleCollection ] [-NetworkRuleCollection ] [-ThreatIntelMode ] - [-ThreatIntelWhitelist ] [-PrivateRange ] [-Tag ] - [-Force] [-AsJob] [-Zone ] [-Sku ] [-VirtualHubId ] [-FirewallPolicyId ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ThreatIntelWhitelist ] [-PrivateRange ] + [-EnableDnsProxy] [-DNSRequireProxyForNetworkRules ] [-DnsServer ] + [-Tag ] [-Force] [-AsJob] [-Zone ] [-Sku ] [-VirtualHubId ] + [-FirewallPolicyId ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### IpConfigurationParameterValues @@ -42,9 +46,11 @@ New-AzFirewall -Name -ResourceGroupName -Location -Vi [-ApplicationRuleCollection ] [-NatRuleCollection ] [-NetworkRuleCollection ] [-ThreatIntelMode ] - [-ThreatIntelWhitelist ] [-PrivateRange ] [-Tag ] - [-Force] [-AsJob] [-Zone ] [-Sku ] [-VirtualHubId ] [-FirewallPolicyId ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ThreatIntelWhitelist ] [-PrivateRange ] + [-EnableDnsProxy] [-DNSRequireProxyForNetworkRules ] [-DnsServer ] + [-Tag ] [-Force] [-AsJob] [-Zone ] [-Sku ] [-VirtualHubId ] + [-FirewallPolicyId ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -211,6 +217,18 @@ New-AzFirewall -Name "azFw" -ResourceGroupName $rgName -Location centralus -Virt This example creates a Firewall attached to virtual network "vnet" in the same resource group as the firewall. The rules and threat intelligence that will be applied to the firewall will be taken from the firewall policy +### 14: Create a Firewall with DNS Proxy and DNS Servers +``` +$rgName = "resourceGroupName" +$vnet = Get-AzVirtualNetwork -ResourceGroupName $rgName -Name "vnet" +$pip = Get-AzPublicIpAddress -ResourceGroupName $rgName -Name "publicIpName" +New-AzFirewall -Name "azFw" -ResourceGroupName $rgName -Location centralus -VirtualNetwork $vnet -PublicIpAddress $pip -DnsServer @("10.10.10.1", "20.20.20.2") +``` + +This example creates a Firewall attached to virtual network "vnet" in the same resource group as the firewall. +DNS Proxy is enabled for this firewall and 2 DNS Servers are provided. Also Require DNS Proxy for Network rules is set +so if there are any Network rules with FQDNs then DNS proxy will be used for them too. + ## PARAMETERS ### -ApplicationRuleCollection @@ -258,6 +276,50 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableDnsProxy +Enable DNS Proxy. By default it is disabled. +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DnsProxyNotRequiredForNetworkRule +Requires DNS Proxy functionality for FQDNs within Network Rules. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DnsServer +The list of DNS Servers to be used for DNS resolution, + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -FirewallPolicyId The firewall policy attached to the firewall @@ -579,7 +641,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS