diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 index 2371d4ccbef9..dfdb416c2a6c 100644 --- a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 @@ -118,6 +118,7 @@ function Test-CortexCRUD $vpnSite2AddressSpaces[1] = "192.169.3.0/24" $vpnSiteLink1 = New-AzVpnSiteLink -Name $vpnSiteLink1Name -IpAddress "5.5.5.5" -LinkProviderName "SomeTelecomProvider1" -LinkSpeedInMbps "10" $vpnSiteLink2 = New-AzVpnSiteLink -Name $vpnSiteLink2Name -IpAddress "5.5.5.6" -LinkProviderName "SomeTelecomProvider2" -LinkSpeedInMbps "10" + $createdVpnSite2 = New-AzVpnSite -ResourceGroupName $rgName -Name $vpnSite2Name -Location $rglocation -VirtualWan $virtualWan -AddressSpace $vpnSite2AddressSpaces -DeviceModel "SomeDevice" -DeviceVendor "SomeDeviceVendor" -VpnSiteLink @($vpnSiteLink1, $vpnSiteLink2) $vpnSite2 = Get-AzVpnSite -ResourceGroupName $rgName -Name $vpnSite2Name Assert-AreEqual $rgName $vpnSite2.ResourceGroupName diff --git a/src/Network/Network.Test/ScenarioTests/LocalNetworkGatewayTests.ps1 b/src/Network/Network.Test/ScenarioTests/LocalNetworkGatewayTests.ps1 index 40908b7b0296..ac7b3086c27d 100644 --- a/src/Network/Network.Test/ScenarioTests/LocalNetworkGatewayTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/LocalNetworkGatewayTests.ps1 @@ -29,6 +29,17 @@ function Test-LocalNetworkGatewayCRUD { # Create the resource group $resourceGroup = New-AzResourceGroup -Name $rgname -Location $rglocation -Tags @{ testtag = "testval" } + + # Create and Get LocalNetworkGateway with Fqdn + $rnameFqdn = $rname + "Fqdn" + $job = New-AzLocalNetworkGateway -ResourceGroupName $rgname -name $rnameFqdn -location $location -AddressPrefix 192.168.0.0/16 -Fqdn "lng.ontoso.com" -AsJob + $job | Wait-Job + $actual = $job | Receive-Job + $expected = Get-AzLocalNetworkGateway -ResourceGroupName $rgname -name $rnameFqdn + Assert-AreEqual $expected.ResourceGroupName $actual.ResourceGroupName + Assert-AreEqual $expected.Name $actual.Name + Assert-AreEqual $expected.Fqdn $actual.Fqdn + Assert-AreEqual "192.168.0.0/16" $expected.LocalNetworkAddressSpace.AddressPrefixes[0] # Create & Get LocalNetworkGateway $job = New-AzLocalNetworkGateway -ResourceGroupName $rgname -name $rname -location $location -AddressPrefix 192.168.0.0/16 -GatewayIpAddress 192.168.3.4 -AsJob @@ -43,12 +54,13 @@ function Test-LocalNetworkGatewayCRUD # List LocalNetworkGateways $list = Get-AzLocalNetworkGateway -ResourceGroupName $rgname - Assert-AreEqual 1 @($list).Count + Assert-AreEqual 2 @($list).Count Assert-AreEqual $list[0].ResourceGroupName $actual.ResourceGroupName Assert-AreEqual $list[0].Name $actual.Name Assert-AreEqual $list[0].Location $actual.Location Assert-AreEqual "192.168.3.4" $list[0].GatewayIpAddress - + + # Set/Update LocalNetworkGateway $job = Set-AzLocalNetworkGateway -LocalNetworkGateway $expected -AddressPrefix "200.168.0.0/16" -AsJob $job | Wait-Job @@ -86,15 +98,21 @@ function Test-LocalNetworkGatewayCRUD $job | Wait-Job $delete = $job | Receive-Job Assert-AreEqual true $delete + + # Delete LocalNetworkGateway + $job = Remove-AzLocalNetworkGateway -ResourceGroupName $actual.ResourceGroupName -name $rnameFqdn -PassThru -Force -AsJob + $job | Wait-Job + $delete = $job | Receive-Job + Assert-AreEqual true $delete $list = Get-AzLocalNetworkGateway -ResourceGroupName $actual.ResourceGroupName Assert-AreEqual 0 @($list).Count # Test error handling Assert-ThrowsContains { Set-AzLocalNetworkGateway -LocalNetworkGateway $actual } "not found" - Assert-Throws { New-AzLocalNetworkGateway -ResourceGroupName $rgname -name $rname -location $location -PeerWeight -1 } "PeerWeight cannot be negative" - Assert-ThrowsContains { New-AzLocalNetworkGateway -ResourceGroupName $rgname -name $rname -location $location -Asn 64 } "ASN and BgpPeeringAddress must both be specified" - Assert-ThrowsContains { New-AzLocalNetworkGateway -ResourceGroupName $rgname -name $rname -location $location -BgpPeeringAddress "1.2.3.4" } "ASN and BgpPeeringAddress must both be specified" + Assert-Throws { New-AzLocalNetworkGateway -ResourceGroupName $rgname -name $rname -GatewayIpAddress 192.168.3.4 -location $location -PeerWeight -1 } "PeerWeight cannot be negative" + Assert-ThrowsContains { New-AzLocalNetworkGateway -ResourceGroupName $rgname -name $rname -GatewayIpAddress 192.168.3.4 -location $location -Asn 64 } "ASN and BgpPeeringAddress must both be specified" + Assert-ThrowsContains { New-AzLocalNetworkGateway -ResourceGroupName $rgname -name $rname -GatewayIpAddress 192.168.3.4 -location $location -BgpPeeringAddress "1.2.3.4" } "ASN and BgpPeeringAddress must both be specified" } finally { diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.LocalNetworkGatewayTests/TestLocalNetworkGatewayCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.LocalNetworkGatewayTests/TestLocalNetworkGatewayCRUD.json index 92bc212436d5..22b7277e2323 100644 --- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.LocalNetworkGatewayTests/TestLocalNetworkGatewayCRUD.json +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.LocalNetworkGatewayTests/TestLocalNetworkGatewayCRUD.json @@ -1,22 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps6908?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzNjkwOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bfb21e6a-e00d-4836-8ad0-c6498be76e51" + "beb66882-94de-4798-abf0-d2c10643ade3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" ] }, "ResponseHeaders": { @@ -26,17 +32,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "4c346916-3a78-4bbf-b371-95eeabdde23d" + "05336365-953e-40bf-8632-c3ee2993c1af" ], "x-ms-correlation-request-id": [ - "4c346916-3a78-4bbf-b371-95eeabdde23d" + "05336365-953e-40bf-8632-c3ee2993c1af" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135533Z:4c346916-3a78-4bbf-b371-95eeabdde23d" + "WESTUS:20200408T064244Z:05336365-953e-40bf-8632-c3ee2993c1af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,44 +51,38 @@ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:32 GMT" + "Wed, 08 Apr 2020 06:42:43 GMT" + ], + "Content-Length": [ + "172" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "73892" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-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 \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-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 \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-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-03-01\",\r\n \"2020-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-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 ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"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-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"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 \"2020-03-01\",\r\n \"2020-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 \"registrationState\": \"Registered\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908\",\r\n \"name\": \"ps6908\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps9548?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzOTU0OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368Fqdn?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4RnFkbj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5bdad8e-b726-4905-b564-780223dac928" + "7b3ecb81-0d49-4ea6-9a77-c67b7d7c0b37" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "37" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -92,17 +92,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "bfac31a0-79a2-4d02-9632-52b7431dd6b5" + "ee5d47cb-fc0b-4a6f-8e6c-290a2aa8f3f3" ], "x-ms-correlation-request-id": [ - "bfac31a0-79a2-4d02-9632-52b7431dd6b5" + "ee5d47cb-fc0b-4a6f-8e6c-290a2aa8f3f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135534Z:bfac31a0-79a2-4d02-9632-52b7431dd6b5" + "WESTUS:20200408T064245Z:ee5d47cb-fc0b-4a6f-8e6c-290a2aa8f3f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,38 +111,32 @@ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:33 GMT" - ], - "Content-Length": [ - "172" + "Wed, 08 Apr 2020 06:42:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "159" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548\",\r\n \"name\": \"ps9548\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/localNetworkGateways/ps5368Fqdn' under resource group 'ps6908' was not found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368Fqdn?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4RnFkbj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0866ba8a-d3bd-4842-a49b-1a77d67a6528" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -152,51 +146,67 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "ETag": [ + "W/\"391f9419-f5ce-4997-af24-d01252775b0f\"" ], "x-ms-request-id": [ - "d77a0db6-b4bf-4b32-9872-119303f09c1c" + "29406321-6039-4c2b-88ad-905722975622" ], "x-ms-correlation-request-id": [ - "d77a0db6-b4bf-4b32-9872-119303f09c1c" + "13420291-5ce9-4dc1-a952-7fb16c1c0e42" ], - "x-ms-routing-request-id": [ - "WESTUS2:20200310T135534Z:d77a0db6-b4bf-4b32-9872-119303f09c1c" + "x-ms-arm-service-request-id": [ + "e6bdbc18-37ae-439c-aafe-928dca7a8325" ], "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:20200408T064259Z:13420291-5ce9-4dc1-a952-7fb16c1c0e42" + ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:33 GMT" + "Wed, 08 Apr 2020 06:42:58 GMT" + ], + "Content-Length": [ + "606" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "155" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/localNetworkGateways/ps8914' under resource group 'ps9548' was not found.\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"name\": \"ps5368Fqdn\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368Fqdn\",\r\n \"etag\": \"W/\\\"391f9419-f5ce-4997-af24-d01252775b0f\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2c6a6667-bb04-4377-976c-15d8a6756e88\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"\",\r\n \"fqdn\": \"lng.ontoso.com\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368Fqdn?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4RnFkbj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "02329533-dcc4-4687-8962-e752ccd604ee" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -207,16 +217,16 @@ "no-cache" ], "ETag": [ - "W/\"1beac727-6808-46bb-a812-ba822d584d2a\"" + "W/\"391f9419-f5ce-4997-af24-d01252775b0f\"" ], "x-ms-request-id": [ - "3387eefb-a769-4155-9911-d77f61870595" + "4842c4ff-fa26-49e7-af29-e3a9d98581fb" ], "x-ms-correlation-request-id": [ - "3dc20ef1-4561-406a-8e90-672654a850e8" + "b3cc1f76-99a3-4daa-ac34-579e189112b3" ], "x-ms-arm-service-request-id": [ - "b51ccc00-e25a-48cb-aa7e-d832ae5cdcdf" + "549a4584-63da-41e5-9362-fd6dc8fb4ade" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -226,19 +236,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135547Z:3dc20ef1-4561-406a-8e90-672654a850e8" + "WESTUS:20200408T064259Z:b3cc1f76-99a3-4daa-ac34-579e189112b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:47 GMT" + "Wed, 08 Apr 2020 06:42:58 GMT" ], "Content-Length": [ - "578" + "606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -247,26 +257,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"1beac727-6808-46bb-a812-ba822d584d2a\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368Fqdn\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368Fqdn\",\r\n \"etag\": \"W/\\\"391f9419-f5ce-4997-af24-d01252775b0f\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2c6a6667-bb04-4377-976c-15d8a6756e88\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"\",\r\n \"fqdn\": \"lng.ontoso.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368Fqdn?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4RnFkbj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d81928f-d041-40d7-acbf-65974984cb02" + "7ed95947-e9f6-4c51-a3f3-86bacad68a65" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -277,16 +287,16 @@ "no-cache" ], "ETag": [ - "W/\"1beac727-6808-46bb-a812-ba822d584d2a\"" + "W/\"391f9419-f5ce-4997-af24-d01252775b0f\"" ], "x-ms-request-id": [ - "fcf3bb88-950e-47e1-a31f-329140cd91a9" + "72ad7f2a-ddc6-4ef6-bdd9-03a6859f7850" ], "x-ms-correlation-request-id": [ - "a4edc67f-5a6d-4b3f-acb2-3f2e4aa55012" + "148b8732-6833-4ab4-ad48-12c4c76b4484" ], "x-ms-arm-service-request-id": [ - "703bbd6b-4580-47ff-9f09-3116d55a908b" + "05d9150a-afbb-4c80-b322-2d21e54cdd1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -296,19 +306,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135547Z:a4edc67f-5a6d-4b3f-acb2-3f2e4aa55012" + "WESTUS:20200408T064259Z:148b8732-6833-4ab4-ad48-12c4c76b4484" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:47 GMT" + "Wed, 08 Apr 2020 06:42:59 GMT" ], "Content-Length": [ - "578" + "606" ], "Content-Type": [ "application/json; charset=utf-8" @@ -317,26 +327,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"1beac727-6808-46bb-a812-ba822d584d2a\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368Fqdn\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368Fqdn\",\r\n \"etag\": \"W/\\\"391f9419-f5ce-4997-af24-d01252775b0f\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2c6a6667-bb04-4377-976c-15d8a6756e88\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"\",\r\n \"fqdn\": \"lng.ontoso.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368Fqdn?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4RnFkbj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"\",\r\n \"fqdn\": \"lng.ontoso.com\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8fb2382c-40b4-4079-ae0c-bff532c4d413" + "252bba11-556d-4a3c-863f-efe6067eff87" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "225" ] }, "ResponseHeaders": { @@ -346,17 +362,23 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"1beac727-6808-46bb-a812-ba822d584d2a\"" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "44aa98f6-7dcb-4b0d-b7f7-4f8d74a26ef9" + "4b800dc1-8f65-4cf8-b3cd-eaee0fedf0c5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4b800dc1-8f65-4cf8-b3cd-eaee0fedf0c5?api-version=2019-12-01" ], "x-ms-correlation-request-id": [ - "a50cef92-d279-49bb-9b47-7ed8e0b8b6d1" + "01300e0b-c137-46ed-97bd-7f7c644c7e51" + ], + "Azure-AsyncNotification": [ + "Enabled" ], "x-ms-arm-service-request-id": [ - "d990d375-eabd-473d-9d68-21af3096f9f1" + "93df85e9-897e-40fe-a5b5-aad9521205ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -365,20 +387,20 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135547Z:a50cef92-d279-49bb-9b47-7ed8e0b8b6d1" + "WESTUS:20200408T064248Z:01300e0b-c137-46ed-97bd-7f7c644c7e51" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:47 GMT" + "Wed, 08 Apr 2020 06:42:48 GMT" ], "Content-Length": [ - "578" + "605" ], "Content-Type": [ "application/json; charset=utf-8" @@ -387,26 +409,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"1beac727-6808-46bb-a812-ba822d584d2a\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"ps5368Fqdn\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368Fqdn\",\r\n \"etag\": \"W/\\\"0e7a2dfb-ab68-4319-ad0c-87b3c28fed66\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2c6a6667-bb04-4377-976c-15d8a6756e88\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"\",\r\n \"fqdn\": \"lng.ontoso.com\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/4b800dc1-8f65-4cf8-b3cd-eaee0fedf0c5?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRiODAwZGMxLThmNjUtNGNmOC1iM2NkLWVhZWUwZmVkZjBjNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "65907d35-a9f2-4897-a0fd-191ad6251717" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -416,17 +432,14 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"1beac727-6808-46bb-a812-ba822d584d2a\"" - ], "x-ms-request-id": [ - "dcfa034a-8974-422d-84d5-a4ae414f2f14" + "426af5e4-0d05-46ea-b5fd-eb6443633927" ], "x-ms-correlation-request-id": [ - "ee262390-2cfe-4a54-9c69-f8fd316cff20" + "3d9608c6-20d2-469b-bf61-731f4fd2ac8f" ], "x-ms-arm-service-request-id": [ - "1af78fa0-59c1-429a-b284-93788fa961a1" + "b7a0b5d7-80d3-4a8a-b803-2058f40f1521" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,19 +449,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135548Z:ee262390-2cfe-4a54-9c69-f8fd316cff20" + "WESTUS:20200408T064259Z:3d9608c6-20d2-469b-bf61-731f4fd2ac8f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:48 GMT" + "Wed, 08 Apr 2020 06:42:58 GMT" ], "Content-Length": [ - "578" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -457,20 +470,80 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"1beac727-6808-46bb-a812-ba822d584d2a\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd74b188-b94b-434d-b92f-e4b8cd463d05" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "80fe8751-b7c0-40a6-9b75-d792f306ba5b" + ], + "x-ms-correlation-request-id": [ + "80fe8751-b7c0-40a6-9b75-d792f306ba5b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200408T064259Z:80fe8751-b7c0-40a6-9b75-d792f306ba5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 08 Apr 2020 06:42:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "155" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/localNetworkGateways/ps5368' under resource group 'ps6908' was not found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -481,16 +554,16 @@ "no-cache" ], "ETag": [ - "W/\"e6faef38-bda8-425e-b655-8711034c4da6\"" + "W/\"e2b2b1f4-73a3-4045-97b6-63c38d2b0444\"" ], "x-ms-request-id": [ - "e46c64e4-47ed-4199-95ee-f03e2285947a" + "33d02a18-af68-4039-8297-d5a45fe3a442" ], "x-ms-correlation-request-id": [ - "5efa37db-1cea-4312-b1e8-58f2a181824e" + "105fc4c5-fab4-4f2c-b686-65ef09b44f7b" ], "x-ms-arm-service-request-id": [ - "9edee68c-0894-487a-b31b-74be57a3338b" + "75661bed-9f52-4bc9-a3bf-f1784a15b068" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -500,19 +573,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135559Z:5efa37db-1cea-4312-b1e8-58f2a181824e" + "WESTUS:20200408T064312Z:105fc4c5-fab4-4f2c-b686-65ef09b44f7b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:58 GMT" + "Wed, 08 Apr 2020 06:43:11 GMT" ], "Content-Length": [ - "578" + "595" ], "Content-Type": [ "application/json; charset=utf-8" @@ -521,26 +594,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"e6faef38-bda8-425e-b655-8711034c4da6\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"e2b2b1f4-73a3-4045-97b6-63c38d2b0444\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f64c9540-033c-47b4-b332-34e045a24fe1" + "3d30564e-c320-4d1b-b859-cd169416c38b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -551,16 +624,16 @@ "no-cache" ], "ETag": [ - "W/\"e6faef38-bda8-425e-b655-8711034c4da6\"" + "W/\"e2b2b1f4-73a3-4045-97b6-63c38d2b0444\"" ], "x-ms-request-id": [ - "c76c477a-b73f-4d03-9cb6-be2fb0a7468d" + "b8567d00-ef78-4d17-8432-ebbfec5ded8c" ], "x-ms-correlation-request-id": [ - "9106b7b7-dc84-42bc-af9b-e6e67d1ebee9" + "f78f8f99-da39-4dff-a968-8e11bda4b1f2" ], "x-ms-arm-service-request-id": [ - "55d9f09d-a252-4646-9306-6b81875d454b" + "6b8ea7e2-19e5-4f49-bcd6-5276794faabf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,19 +643,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135559Z:9106b7b7-dc84-42bc-af9b-e6e67d1ebee9" + "WESTUS:20200408T064312Z:f78f8f99-da39-4dff-a968-8e11bda4b1f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:58 GMT" + "Wed, 08 Apr 2020 06:43:11 GMT" ], "Content-Length": [ - "578" + "595" ], "Content-Type": [ "application/json; charset=utf-8" @@ -591,26 +664,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"e6faef38-bda8-425e-b655-8711034c4da6\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"e2b2b1f4-73a3-4045-97b6-63c38d2b0444\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb1186dc-8a11-4ec3-849c-3e4f7916bb9e" + "3e70940e-6fad-4913-a76a-52cc2da1fad4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -621,16 +694,16 @@ "no-cache" ], "ETag": [ - "W/\"e6faef38-bda8-425e-b655-8711034c4da6\"" + "W/\"e2b2b1f4-73a3-4045-97b6-63c38d2b0444\"" ], "x-ms-request-id": [ - "3c847866-34c8-4c95-871c-7a33227ff4b5" + "6b68e75c-77dc-44ea-8ca5-282cb54bacb9" ], "x-ms-correlation-request-id": [ - "16de6362-a440-4cff-9971-5d80b9580aa3" + "83e878c8-4aef-490d-946d-9d9b20393841" ], "x-ms-arm-service-request-id": [ - "058b7143-7aa8-4f6a-98f0-852d306d0029" + "d73379e2-facd-49d0-8e66-c53c1b0bfcbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -643,16 +716,16 @@ "11999" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135559Z:16de6362-a440-4cff-9971-5d80b9580aa3" + "WESTUS:20200408T064312Z:83e878c8-4aef-490d-946d-9d9b20393841" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:58 GMT" + "Wed, 08 Apr 2020 06:43:11 GMT" ], "Content-Length": [ - "578" + "595" ], "Content-Type": [ "application/json; charset=utf-8" @@ -661,26 +734,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"e6faef38-bda8-425e-b655-8711034c4da6\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"e2b2b1f4-73a3-4045-97b6-63c38d2b0444\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ae0d061-8ee3-4002-90ea-3fc488129261" + "e9c03c6e-dd95-4c82-a9e5-da13afa6c715" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -691,16 +764,16 @@ "no-cache" ], "ETag": [ - "W/\"e6faef38-bda8-425e-b655-8711034c4da6\"" + "W/\"e2b2b1f4-73a3-4045-97b6-63c38d2b0444\"" ], "x-ms-request-id": [ - "c1a5cc89-a90d-404e-8963-3205f6fefd0d" + "75a4c5d6-77e2-477f-97c7-d211cccf6413" ], "x-ms-correlation-request-id": [ - "28a916b2-2c51-412f-b909-7a1ea7b8bfbd" + "1b9c4048-57c3-4863-8e88-1cee5b47ca59" ], "x-ms-arm-service-request-id": [ - "2d4e707d-fc81-4eed-9016-85e49b5644de" + "13f3805e-2d3b-47d2-9dca-bb624071c761" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -713,16 +786,16 @@ "11999" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135559Z:28a916b2-2c51-412f-b909-7a1ea7b8bfbd" + "WESTUS:20200408T064312Z:1b9c4048-57c3-4863-8e88-1cee5b47ca59" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:58 GMT" + "Wed, 08 Apr 2020 06:43:12 GMT" ], "Content-Length": [ - "578" + "595" ], "Content-Type": [ "application/json; charset=utf-8" @@ -731,20 +804,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"e6faef38-bda8-425e-b655-8711034c4da6\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"e2b2b1f4-73a3-4045-97b6-63c38d2b0444\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -755,16 +828,16 @@ "no-cache" ], "ETag": [ - "W/\"0a4bc1e1-d897-41cb-b27e-c23e67a2de12\"" + "W/\"9cb8a371-2f83-46dc-a2bd-fc164c2e1335\"" ], "x-ms-request-id": [ - "8426bdfb-99f2-43ae-ab84-66016a7c6f34" + "489fb72e-2ad8-486c-849a-378c3e375dd4" ], "x-ms-correlation-request-id": [ - "31ea1894-b2b5-4ae7-9cb3-7bcc5e3dfea1" + "9d48cd1e-d863-4af8-abd2-80c544fbbdfd" ], "x-ms-arm-service-request-id": [ - "3239a81c-a599-4996-95e6-66db282e860c" + "4eb756a4-7a8c-4db8-8e08-10d19db3c5aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -777,16 +850,16 @@ "11997" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135609Z:31ea1894-b2b5-4ae7-9cb3-7bcc5e3dfea1" + "WESTUS:20200408T064323Z:9d48cd1e-d863-4af8-abd2-80c544fbbdfd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:09 GMT" + "Wed, 08 Apr 2020 06:43:22 GMT" ], "Content-Length": [ - "691" + "595" ], "Content-Type": [ "application/json; charset=utf-8" @@ -795,26 +868,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"0a4bc1e1-d897-41cb-b27e-c23e67a2de12\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"9cb8a371-2f83-46dc-a2bd-fc164c2e1335\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64a44cee-cfc0-41c2-a021-b1f9aa6cdb5c" + "ffb2deaf-c685-46f6-87aa-68b793ab55be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -825,16 +898,16 @@ "no-cache" ], "ETag": [ - "W/\"0a4bc1e1-d897-41cb-b27e-c23e67a2de12\"" + "W/\"9cb8a371-2f83-46dc-a2bd-fc164c2e1335\"" ], "x-ms-request-id": [ - "cf6a87a3-ab08-44ac-aa3d-deb12c6d051f" + "b265cbc4-c317-42df-ac83-e35877cd2965" ], "x-ms-correlation-request-id": [ - "dd508e7c-d3de-40d7-be94-26889faa8bf0" + "66e1aeb8-44a3-46ad-9f24-bf6adcf13382" ], "x-ms-arm-service-request-id": [ - "83eb3d08-17f2-4089-9832-e8ace30cc077" + "4137cff2-64ad-41ae-ba08-dff89cb7ab56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -847,16 +920,16 @@ "11996" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135609Z:dd508e7c-d3de-40d7-be94-26889faa8bf0" + "WESTUS:20200408T064323Z:66e1aeb8-44a3-46ad-9f24-bf6adcf13382" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:09 GMT" + "Wed, 08 Apr 2020 06:43:22 GMT" ], "Content-Length": [ - "691" + "595" ], "Content-Type": [ "application/json; charset=utf-8" @@ -865,26 +938,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"0a4bc1e1-d897-41cb-b27e-c23e67a2de12\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"9cb8a371-2f83-46dc-a2bd-fc164c2e1335\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b3d4c8f-e3f3-4edb-aa56-09190e313a21" + "d9dc8a3c-9ab5-4915-906a-241a05a569a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -895,16 +968,16 @@ "no-cache" ], "ETag": [ - "W/\"0a4bc1e1-d897-41cb-b27e-c23e67a2de12\"" + "W/\"9cb8a371-2f83-46dc-a2bd-fc164c2e1335\"" ], "x-ms-request-id": [ - "bac7dceb-c369-421e-85bb-6ba3142dfcb9" + "bbabd46c-2913-4cbd-983a-267088f5cf17" ], "x-ms-correlation-request-id": [ - "d54c28cc-913b-40e4-964d-03f6793f0c6c" + "5d0f8300-0a9f-44d3-b0af-513f8c9b61aa" ], "x-ms-arm-service-request-id": [ - "ae95335d-e39d-45eb-a79c-28d07db5bbdc" + "7fb39c37-3810-4e2c-8397-aaf965a63074" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -917,16 +990,16 @@ "11999" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135610Z:d54c28cc-913b-40e4-964d-03f6793f0c6c" + "WESTUS:20200408T064323Z:5d0f8300-0a9f-44d3-b0af-513f8c9b61aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:09 GMT" + "Wed, 08 Apr 2020 06:43:23 GMT" ], "Content-Length": [ - "691" + "595" ], "Content-Type": [ "application/json; charset=utf-8" @@ -935,26 +1008,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"0a4bc1e1-d897-41cb-b27e-c23e67a2de12\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"9cb8a371-2f83-46dc-a2bd-fc164c2e1335\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf0e42d6-4408-4b11-a21c-4eeffbba9ba0" + "da60f345-2562-4c49-ac4c-f10c72a189f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -965,16 +1038,16 @@ "no-cache" ], "ETag": [ - "W/\"0a4bc1e1-d897-41cb-b27e-c23e67a2de12\"" + "W/\"9cb8a371-2f83-46dc-a2bd-fc164c2e1335\"" ], "x-ms-request-id": [ - "afd168e3-3272-4295-a626-5b8c66a6def8" + "10e95d4b-6c92-4deb-8fa2-d6b234899000" ], "x-ms-correlation-request-id": [ - "84f8f699-55f6-428d-8104-929b4d52038d" + "b04ba740-0d96-4853-bc96-ad41ab070d7e" ], "x-ms-arm-service-request-id": [ - "3aa22bcb-a63c-4eea-ac6d-d5ae7174dcd8" + "86bdf613-8d98-46fd-a0c0-425e9a960075" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -987,16 +1060,16 @@ "11999" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135610Z:84f8f699-55f6-428d-8104-929b4d52038d" + "WESTUS:20200408T064323Z:b04ba740-0d96-4853-bc96-ad41ab070d7e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:09 GMT" + "Wed, 08 Apr 2020 06:43:23 GMT" ], "Content-Length": [ - "691" + "595" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1005,20 +1078,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"0a4bc1e1-d897-41cb-b27e-c23e67a2de12\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"9cb8a371-2f83-46dc-a2bd-fc164c2e1335\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -1029,38 +1102,38 @@ "no-cache" ], "ETag": [ - "W/\"837ef7e7-bc27-4d23-a485-ebcaddb309b5\"" + "W/\"7f1a3241-adf1-464a-85e3-f69d62a80e09\"" ], "x-ms-request-id": [ - "e878e4f9-be29-4c12-8c27-1c9969381a19" + "eeb42819-b023-4f06-88ff-9e2e5f6695ff" ], "x-ms-correlation-request-id": [ - "568809f2-01d3-4d4d-b81a-4a011a858e15" + "00776d13-ebfd-4b30-891f-cf14c93230fc" ], "x-ms-arm-service-request-id": [ - "f8ccd3ea-bf4a-42fd-a696-cfd073a40157" + "cecb68e4-44f6-41fc-980a-59ca1c0fcc89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135620Z:568809f2-01d3-4d4d-b81a-4a011a858e15" + "WESTUS:20200408T064334Z:00776d13-ebfd-4b30-891f-cf14c93230fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:20 GMT" + "Wed, 08 Apr 2020 06:43:34 GMT" ], "Content-Length": [ - "691" + "742" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1069,26 +1142,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"837ef7e7-bc27-4d23-a485-ebcaddb309b5\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"7f1a3241-adf1-464a-85e3-f69d62a80e09\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15,\r\n \"bgpPeeringAddresses\": []\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "829909bb-4178-4e81-b6ca-8524f7613bdc" + "7380b685-8241-4501-b0cd-43f24ebe5824" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -1099,16 +1172,16 @@ "no-cache" ], "ETag": [ - "W/\"837ef7e7-bc27-4d23-a485-ebcaddb309b5\"" + "W/\"7f1a3241-adf1-464a-85e3-f69d62a80e09\"" ], "x-ms-request-id": [ - "02ec3d32-11d6-45a8-85b6-84aeb3c6f9f4" + "b1621a67-63ee-4900-8e3c-29ebbbd35a14" ], "x-ms-correlation-request-id": [ - "2552f13a-3f39-43b0-b4cf-d1c8d4daca4e" + "2c3b96f4-a151-4bb7-8dcb-cdda32b146ad" ], "x-ms-arm-service-request-id": [ - "9aa0250c-7738-4f87-bdb7-63e6656e994f" + "832adb13-5458-4a69-9397-47fa02a8dfd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1121,16 +1194,16 @@ "11996" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135620Z:2552f13a-3f39-43b0-b4cf-d1c8d4daca4e" + "WESTUS:20200408T064334Z:2c3b96f4-a151-4bb7-8dcb-cdda32b146ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:20 GMT" + "Wed, 08 Apr 2020 06:43:34 GMT" ], "Content-Length": [ - "691" + "742" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1139,26 +1212,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"837ef7e7-bc27-4d23-a485-ebcaddb309b5\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"7f1a3241-adf1-464a-85e3-f69d62a80e09\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15,\r\n \"bgpPeeringAddresses\": []\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed9a90fc-7f34-4138-b8d6-346ad5c8a1db" + "710d8649-3232-4f81-8f1c-6663d6f78710" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -1169,16 +1242,16 @@ "no-cache" ], "ETag": [ - "W/\"837ef7e7-bc27-4d23-a485-ebcaddb309b5\"" + "W/\"7f1a3241-adf1-464a-85e3-f69d62a80e09\"" ], "x-ms-request-id": [ - "51e1feb5-f509-4514-b178-7d731672742b" + "319d7d4d-29df-427a-9978-d555887f65d6" ], "x-ms-correlation-request-id": [ - "632bcf02-7f3c-4b5b-9daa-ab38b233b340" + "bf822d5a-f6c3-42cb-933a-6633a70dd989" ], "x-ms-arm-service-request-id": [ - "ecb0057c-fe33-4093-b210-2c9e242ea038" + "1c953a7e-7eb7-4a45-b9fb-0c5e9bfbaad4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1191,16 +1264,16 @@ "11999" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135620Z:632bcf02-7f3c-4b5b-9daa-ab38b233b340" + "WESTUS:20200408T064334Z:bf822d5a-f6c3-42cb-933a-6633a70dd989" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:20 GMT" + "Wed, 08 Apr 2020 06:43:34 GMT" ], "Content-Length": [ - "691" + "742" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1209,26 +1282,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"837ef7e7-bc27-4d23-a485-ebcaddb309b5\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"7f1a3241-adf1-464a-85e3-f69d62a80e09\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15,\r\n \"bgpPeeringAddresses\": []\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbc7a68d-1cb3-4bc3-a188-72328f959196" + "5059b78a-8c77-49bf-b73e-d2c30ef78370" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -1239,38 +1312,38 @@ "no-cache" ], "ETag": [ - "W/\"837ef7e7-bc27-4d23-a485-ebcaddb309b5\"" + "W/\"7f1a3241-adf1-464a-85e3-f69d62a80e09\"" ], "x-ms-request-id": [ - "83607989-d1a8-4d1c-870d-0f3bf642e430" + "1104bb8a-be22-4e2c-8b9a-b41acc14840b" ], "x-ms-correlation-request-id": [ - "7c75bd02-04e1-426b-a177-dbe5fad13ce5" + "5dd2e585-cd75-414b-bf60-51694f61bde5" ], "x-ms-arm-service-request-id": [ - "eb4cc784-446a-41a3-9e1f-875cc03ec99d" + "2db236e3-4018-4ca9-85c7-4f954aae8491" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135621Z:7c75bd02-04e1-426b-a177-dbe5fad13ce5" + "WESTUS:20200408T064335Z:5dd2e585-cd75-414b-bf60-51694f61bde5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:20 GMT" + "Wed, 08 Apr 2020 06:43:34 GMT" ], "Content-Length": [ - "691" + "742" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1279,26 +1352,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"837ef7e7-bc27-4d23-a485-ebcaddb309b5\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"7f1a3241-adf1-464a-85e3-f69d62a80e09\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15,\r\n \"bgpPeeringAddresses\": []\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6e9a818d-845d-4804-b09d-1d4fa87a677d" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -1308,57 +1375,67 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "ETag": [ + "W/\"35c7ab79-68df-4da8-a5bb-623dab4b0a18\"" ], "x-ms-request-id": [ - "3d4fbcae-bd22-4c7a-bdee-6fd96e70e0e3" + "b731e4f8-30bf-40a0-a460-a92e068924e5" ], "x-ms-correlation-request-id": [ - "3d4fbcae-bd22-4c7a-bdee-6fd96e70e0e3" + "f636614b-ad37-4be1-8aac-df4861bfee7c" ], - "x-ms-routing-request-id": [ - "WESTUS2:20200310T135632Z:3d4fbcae-bd22-4c7a-bdee-6fd96e70e0e3" + "x-ms-arm-service-request-id": [ + "ff3df420-d8e7-48fb-ae21-dfda5902e4c1" ], "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:20200408T064346Z:f636614b-ad37-4be1-8aac-df4861bfee7c" + ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:31 GMT" + "Wed, 08 Apr 2020 06:43:45 GMT" + ], + "Content-Length": [ + "742" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "155" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/localNetworkGateways/ps8914' under resource group 'ps9548' was not found.\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"35c7ab79-68df-4da8-a5bb-623dab4b0a18\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15,\r\n \"bgpPeeringAddresses\": []\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6658313-3a46-4c38-bf85-0e25ba13e981" + "9be26f4f-0a2d-47c9-a027-36c041ae4077" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -1368,57 +1445,67 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "ETag": [ + "W/\"35c7ab79-68df-4da8-a5bb-623dab4b0a18\"" ], "x-ms-request-id": [ - "855f97d6-eaba-427e-87ba-7275988e5c21" + "d3dfa99d-299c-4726-9e8a-cd207d4d91fe" ], "x-ms-correlation-request-id": [ - "855f97d6-eaba-427e-87ba-7275988e5c21" + "8ff84f2c-de5b-472f-b4b7-b93859606758" ], - "x-ms-routing-request-id": [ - "WESTUS2:20200310T135632Z:855f97d6-eaba-427e-87ba-7275988e5c21" + "x-ms-arm-service-request-id": [ + "ce29bceb-97af-462f-9536-5531cc4482aa" ], "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:20200408T064346Z:8ff84f2c-de5b-472f-b4b7-b93859606758" + ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:31 GMT" + "Wed, 08 Apr 2020 06:43:45 GMT" + ], + "Content-Length": [ + "742" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "155" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/localNetworkGateways/ps8914' under resource group 'ps9548' was not found.\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"35c7ab79-68df-4da8-a5bb-623dab4b0a18\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15,\r\n \"bgpPeeringAddresses\": []\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84bdc9ce-4c1b-4266-b7f9-51d356ce3d77" + "8ba792a4-a61f-464b-8a0c-a22021120920" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -1428,57 +1515,67 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "ETag": [ + "W/\"35c7ab79-68df-4da8-a5bb-623dab4b0a18\"" ], "x-ms-request-id": [ - "9e37b981-8512-4cce-83a7-2aa965599f8e" + "c4c9658c-0026-4ded-abe0-ca9d12425a9a" ], "x-ms-correlation-request-id": [ - "9e37b981-8512-4cce-83a7-2aa965599f8e" + "37527a86-3a4b-46f6-9491-956c0f994bb4" ], - "x-ms-routing-request-id": [ - "WESTUS2:20200310T135632Z:9e37b981-8512-4cce-83a7-2aa965599f8e" + "x-ms-arm-service-request-id": [ + "f8d9c42a-8a62-46dc-8403-0605977a3588" ], "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:20200408T064346Z:37527a86-3a4b-46f6-9491-956c0f994bb4" + ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:31 GMT" + "Wed, 08 Apr 2020 06:43:45 GMT" + ], + "Content-Length": [ + "742" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "155" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/localNetworkGateways/ps8914' under resource group 'ps9548' was not found.\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"35c7ab79-68df-4da8-a5bb-623dab4b0a18\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15,\r\n \"bgpPeeringAddresses\": []\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1453fe9b-01f8-4931-9289-6113b15030f8" + "ebccb85a-9481-4809-a0b7-7ffb4d8a459f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -1488,63 +1585,341 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" + "ETag": [ + "W/\"35c7ab79-68df-4da8-a5bb-623dab4b0a18\"" ], "x-ms-request-id": [ - "535f3aa5-4abc-4253-b51d-2f76b837157b" + "14ec8fee-a76d-4e58-a9fa-d29a92b05364" ], "x-ms-correlation-request-id": [ - "535f3aa5-4abc-4253-b51d-2f76b837157b" + "20b37522-4e0d-4847-a0a3-6169212ceaad" ], - "x-ms-routing-request-id": [ - "WESTUS2:20200310T135632Z:535f3aa5-4abc-4253-b51d-2f76b837157b" + "x-ms-arm-service-request-id": [ + "429c8442-e0ac-4d59-bc67-b4f203e58996" ], "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:20200408T064346Z:20b37522-4e0d-4847-a0a3-6169212ceaad" + ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:31 GMT" + "Wed, 08 Apr 2020 06:43:45 GMT" + ], + "Content-Length": [ + "742" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "155" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/localNetworkGateways/ps8914' under resource group 'ps9548' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"35c7ab79-68df-4da8-a5bb-623dab4b0a18\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15,\r\n \"bgpPeeringAddresses\": []\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a681b5b-6a06-4ffa-8a02-2aa2ed6e10fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "63c14b67-cbd1-4551-9fb9-c0c2adeeba88" + ], + "x-ms-correlation-request-id": [ + "333b0593-3cac-44a2-8b6f-79bd6ab96b5b" + ], + "x-ms-arm-service-request-id": [ + "9088a4be-40de-4476-9ccb-a7057d9450f8" + ], + "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:20200408T064408Z:333b0593-3cac-44a2-8b6f-79bd6ab96b5b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 08 Apr 2020 06:44:08 GMT" + ], + "Content-Length": [ + "236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368 not found.\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97d4f928-14d6-4504-9d28-6f78c0358462" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "78de1f86-b7a1-43e3-9afb-8f8aa9c20783" + ], + "x-ms-correlation-request-id": [ + "70c66388-a9fe-426b-a5c1-0d7798686ea5" + ], + "x-ms-arm-service-request-id": [ + "a10bea92-1d39-49d3-8469-4dbdc20f8e91" + ], + "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:20200408T064408Z:70c66388-a9fe-426b-a5c1-0d7798686ea5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 08 Apr 2020 06:44:08 GMT" + ], + "Content-Length": [ + "236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368 not found.\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8934be6d-f5e5-4356-b13c-b9c12fc902af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fc8b3ade-e9f9-4f97-9002-b3c8b6e79c4c" + ], + "x-ms-correlation-request-id": [ + "06963a3d-5da7-460a-9dc2-3ee807f0a3d5" + ], + "x-ms-arm-service-request-id": [ + "26894f1f-4f48-421d-87dc-63d671d9f206" + ], + "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:20200408T064409Z:06963a3d-5da7-460a-9dc2-3ee807f0a3d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 08 Apr 2020 06:44:08 GMT" + ], + "Content-Length": [ + "236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368 not found.\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9b0f92f-fc93-44c4-b7fe-4c1fb21080e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1e9bb632-d7e4-4b6e-b1a2-069e0fec4e6d" + ], + "x-ms-correlation-request-id": [ + "ef99c052-aa40-4a57-82bd-f4c1f66fe243" + ], + "x-ms-arm-service-request-id": [ + "ab7ba567-c3bd-4287-8bc1-5b17a24d5567" + ], + "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:20200408T064409Z:ef99c052-aa40-4a57-82bd-f4c1f66fe243" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 08 Apr 2020 06:44:08 GMT" + ], + "Content-Length": [ + "236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368 not found.\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n },\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "31ba1696-5d20-44d8-8e93-70dc1864bfb3" + "e72cdbe9-b38d-469a-b097-7996ebeeadeb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "207" + "222" ] }, "ResponseHeaders": { @@ -1558,19 +1933,19 @@ "10" ], "x-ms-request-id": [ - "8d2cbc64-e788-4673-aa54-2a6c330621af" + "c513549c-114c-4c64-8781-dba17d3f5e35" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8d2cbc64-e788-4673-aa54-2a6c330621af?api-version=2019-12-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/c513549c-114c-4c64-8781-dba17d3f5e35?api-version=2019-12-01" ], "x-ms-correlation-request-id": [ - "d9331252-4241-4d0b-b98b-4ceee0def7b4" + "27bdb786-1d51-4b61-a324-1f5ca9516c91" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "6685682f-8901-4275-8e36-215a01f232d5" + "13560b58-6520-44d9-90fb-7576eca71985" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1583,16 +1958,16 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135537Z:d9331252-4241-4d0b-b98b-4ceee0def7b4" + "WESTUS:20200408T064301Z:27bdb786-1d51-4b61-a324-1f5ca9516c91" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:36 GMT" + "Wed, 08 Apr 2020 06:43:01 GMT" ], "Content-Length": [ - "577" + "594" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1601,32 +1976,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"1a578bb0-655a-4f82-bd34-8fc7f4fbd14a\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"e5e8ae0e-c5ba-49cf-aba3-ddbeb4830b56\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\"\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8ac645b6-4ba3-47d9-b674-94b6fe49ed46" + "1cdd6fea-de69-45d4-a3ee-fb363a90afb0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "349" + "364" ] }, "ResponseHeaders": { @@ -1640,16 +2015,16 @@ "10" ], "x-ms-request-id": [ - "55a456c6-797b-45c3-a9be-e202ac2682db" + "66c7d956-5440-425e-9d7e-b79b7441d236" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/55a456c6-797b-45c3-a9be-e202ac2682db?api-version=2019-12-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/66c7d956-5440-425e-9d7e-b79b7441d236?api-version=2019-12-01" ], "x-ms-correlation-request-id": [ - "76c6bcf4-efae-486d-b06b-c39cf84d5cc0" + "f0403cb0-8d6c-4762-9fed-fa9682750aaf" ], "x-ms-arm-service-request-id": [ - "46c5fcfe-e4b8-48b0-9fcf-bacd47594f1a" + "cea56678-9aff-4210-93b5-c285ba117444" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1659,19 +2034,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135548Z:76c6bcf4-efae-486d-b06b-c39cf84d5cc0" + "WESTUS:20200408T064313Z:f0403cb0-8d6c-4762-9fed-fa9682750aaf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:48 GMT" + "Wed, 08 Apr 2020 06:43:12 GMT" ], "Content-Length": [ - "577" + "594" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1680,32 +2055,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"a9d894e1-ae8e-4b7d-8d2b-70f305e4ffbd\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"2071ca1e-2b03-4c70-b290-6851ec2af3f1\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15\r\n }\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"location\": \"westcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15,\r\n \"bgpPeeringAddresses\": []\r\n }\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f27a5f36-c8d4-4192-a7ea-de9b79f89b5e" + "3e07f73a-9a6a-4122-9ece-9db6c0b233fb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "460" + "511" ] }, "ResponseHeaders": { @@ -1719,16 +2094,16 @@ "10" ], "x-ms-request-id": [ - "a6061859-f9bb-49eb-815d-12f7002c8279" + "9b705c97-9253-4454-bd46-bb6d7325f18b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a6061859-f9bb-49eb-815d-12f7002c8279?api-version=2019-12-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9b705c97-9253-4454-bd46-bb6d7325f18b?api-version=2019-12-01" ], "x-ms-correlation-request-id": [ - "a3f5cb53-124c-4152-9218-30e564c66ab6" + "97204545-70ca-4af2-8430-242f784abf63" ], "x-ms-arm-service-request-id": [ - "79816c82-f01a-4e25-8f94-1aef50d44499" + "3ada98d3-2e92-4050-9544-401350a96092" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1741,16 +2116,16 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135559Z:a3f5cb53-124c-4152-9218-30e564c66ab6" + "WESTUS:20200408T064324Z:97204545-70ca-4af2-8430-242f784abf63" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:58 GMT" + "Wed, 08 Apr 2020 06:43:24 GMT" ], "Content-Length": [ - "690" + "741" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1759,32 +2134,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"ee6c86ec-002f-40b6-9734-0bfea57b4af3\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"308c2150-c2d2-4df5-b087-e60b7565b1c3\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\",\r\n \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15,\r\n \"bgpPeeringAddresses\": []\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15\r\n }\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"location\": \"westcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15,\r\n \"bgpPeeringAddresses\": []\r\n }\r\n },\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4560a08b-e07f-4816-bb51-f6f8fab03974" + "60fd1fa1-ce5a-40e9-b7fc-84809614b113" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "460" + "511" ] }, "ResponseHeaders": { @@ -1798,16 +2173,16 @@ "10" ], "x-ms-request-id": [ - "d788c55f-ba1d-4277-bba1-7eecacd25c5f" + "19cc001d-50c2-4083-99ce-de67a4d918c1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/d788c55f-ba1d-4277-bba1-7eecacd25c5f?api-version=2019-12-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/19cc001d-50c2-4083-99ce-de67a4d918c1?api-version=2019-12-01" ], "x-ms-correlation-request-id": [ - "46101dbd-c907-48b4-8d01-fef5dec89816" + "4fe773e4-2da0-44c8-b593-7efac7a6ccf7" ], "x-ms-arm-service-request-id": [ - "cde692a0-5d52-451f-957c-ef7fc9f1d272" + "b2179b2a-cb9d-4f49-99fe-b86766f2cd93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1820,16 +2195,16 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135610Z:46101dbd-c907-48b4-8d01-fef5dec89816" + "WESTUS:20200408T064335Z:4fe773e4-2da0-44c8-b593-7efac7a6ccf7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:10 GMT" + "Wed, 08 Apr 2020 06:43:35 GMT" ], "Content-Length": [ - "690" + "741" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1838,20 +2213,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"2075cfbe-6fa6-4b4e-a5e4-9e6868daf705\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"a5efd402-c9f4-4e30-90ae-ac6f57a6d197\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\",\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"1.2.3.4\",\r\n \"peerWeight\": 15,\r\n \"bgpPeeringAddresses\": []\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/8d2cbc64-e788-4673-aa54-2a6c330621af?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzhkMmNiYzY0LWU3ODgtNDY3My1hYTU0LTJhNmMzMzA2MjFhZj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/c513549c-114c-4c64-8781-dba17d3f5e35?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2M1MTM1NDljLTExNGMtNGM2NC04NzgxLWRiYTE3ZDNmNWUzNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -1862,13 +2237,13 @@ "no-cache" ], "x-ms-request-id": [ - "ec35dc0f-97ed-49d3-802b-861fe4daafc1" + "7263670d-633a-4888-b161-b8ff038f6589" ], "x-ms-correlation-request-id": [ - "3c507b7d-a1d6-4c9e-a0c5-fe6b4a202f58" + "1a15b8cc-7bde-4888-9fbc-26d3960428bb" ], "x-ms-arm-service-request-id": [ - "2fbc1434-3b90-4f35-be07-a4bed12e369e" + "8cf71c15-8c51-4d52-873d-029a22144d94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1881,13 +2256,13 @@ "11998" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135547Z:3c507b7d-a1d6-4c9e-a0c5-fe6b4a202f58" + "WESTUS:20200408T064312Z:1a15b8cc-7bde-4888-9fbc-26d3960428bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:47 GMT" + "Wed, 08 Apr 2020 06:43:11 GMT" ], "Content-Length": [ "29" @@ -1903,22 +2278,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "657e1c8f-ef90-417d-bcd7-2fde2c604dd8" + "5d6c1d5a-2bb4-451a-a9ce-19edd89ba0ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -1929,13 +2304,13 @@ "no-cache" ], "x-ms-request-id": [ - "2c4036e0-6df3-4853-9ba1-927ff1c3856d" + "1676a55a-8172-4f0c-86b8-bec367a5951c" ], "x-ms-correlation-request-id": [ - "21d4c222-355c-4540-b20b-36ccc20f4992" + "c61e7b8d-132f-4370-8bf1-5a3c81f3342d" ], "x-ms-arm-service-request-id": [ - "1b8e448e-c77f-4868-9870-8c3f81b46303" + "d51ffe71-97f0-4d6a-8e8a-3bfd169b1a5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1948,16 +2323,16 @@ "11999" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135548Z:21d4c222-355c-4540-b20b-36ccc20f4992" + "WESTUS:20200408T064312Z:c61e7b8d-132f-4370-8bf1-5a3c81f3342d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:47 GMT" + "Wed, 08 Apr 2020 06:43:12 GMT" ], "Content-Length": [ - "671" + "1373" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1966,26 +2341,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps8914\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914\",\r\n \"etag\": \"W/\\\"1beac727-6808-46bb-a812-ba822d584d2a\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f177a3e-4db0-4119-b859-da65e9474d42\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps5368\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368\",\r\n \"etag\": \"W/\\\"e2b2b1f4-73a3-4045-97b6-63c38d2b0444\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa6a81e7-3941-48ca-acd8-6f6d572c6605\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"fqdn\": \"\"\r\n }\r\n },\r\n {\r\n \"name\": \"ps5368Fqdn\",\r\n \"id\": \"/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368Fqdn\",\r\n \"etag\": \"W/\\\"391f9419-f5ce-4997-af24-d01252775b0f\\\"\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2c6a6667-bb04-4377-976c-15d8a6756e88\",\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"\",\r\n \"fqdn\": \"lng.ontoso.com\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a6a5614-3be0-4e2d-87b5-3ccc187aa3fe" + "f2e3f962-172e-479f-b4f2-474cbb005879" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -1995,51 +2370,58 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], "x-ms-request-id": [ - "383edf99-8dd6-4c73-a9f6-3f1654eff2e4" + "4c464d3d-1cf7-4eab-b3f2-1a39dcd86517" ], "x-ms-correlation-request-id": [ - "383edf99-8dd6-4c73-a9f6-3f1654eff2e4" + "19a5cc57-3530-4456-92c5-0d8b1612aba4" ], - "x-ms-routing-request-id": [ - "WESTUS2:20200310T135631Z:383edf99-8dd6-4c73-a9f6-3f1654eff2e4" + "x-ms-arm-service-request-id": [ + "b920b847-229f-488b-9335-0131322177a4" ], "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:20200408T064408Z:19a5cc57-3530-4456-92c5-0d8b1612aba4" + ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:31 GMT" + "Wed, 08 Apr 2020 06:44:07 GMT" + ], + "Content-Length": [ + "19" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "12" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/55a456c6-797b-45c3-a9be-e202ac2682db?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzU1YTQ1NmM2LTc5N2ItNDVjMy1hOWJlLWUyMDJhYzI2ODJkYj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/66c7d956-5440-425e-9d7e-b79b7441d236?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY2YzdkOTU2LTU0NDAtNDI1ZS05ZDdlLWI3OWI3NDQxZDIzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -2050,13 +2432,13 @@ "no-cache" ], "x-ms-request-id": [ - "b7f7c297-31da-476a-a180-bca40902f359" + "6636f3e9-ece4-47d8-a4ed-993ec9c7da54" ], "x-ms-correlation-request-id": [ - "e21ee0b6-1740-4e9a-9018-506e96bcae3a" + "afc2ef59-2d2e-4654-bc36-cddd570d845c" ], "x-ms-arm-service-request-id": [ - "5da23727-66cd-4cfa-a9d9-b42741f4ada4" + "52778d78-f5d2-4b3f-8204-798a411cde0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2066,16 +2448,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135558Z:e21ee0b6-1740-4e9a-9018-506e96bcae3a" + "WESTUS:20200408T064323Z:afc2ef59-2d2e-4654-bc36-cddd570d845c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:55:58 GMT" + "Wed, 08 Apr 2020 06:43:22 GMT" ], "Content-Length": [ "29" @@ -2091,16 +2473,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/a6061859-f9bb-49eb-815d-12f7002c8279?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2MDYxODU5LWY5YmItNDllYi04MTVkLTEyZjcwMDJjODI3OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/9b705c97-9253-4454-bd46-bb6d7325f18b?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzliNzA1Yzk3LTkyNTMtNDQ1NC1iZDQ2LWJiNmQ3MzI1ZjE4Yj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -2111,13 +2493,13 @@ "no-cache" ], "x-ms-request-id": [ - "898f428d-79de-41e8-9b6f-be3ec77fc89f" + "dc6a5db4-2774-4c5c-9a12-cdb817f836af" ], "x-ms-correlation-request-id": [ - "a42dc065-de42-4d5a-9758-ab56f70d3799" + "eeabccff-c4f7-40cb-aa15-2bb7a7badfc8" ], "x-ms-arm-service-request-id": [ - "cdaa6d81-4bb4-48c2-8560-006c6dc1e4e0" + "8e8a2f3f-b0e9-469b-b854-3af9c0f5432c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2130,13 +2512,13 @@ "11998" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135609Z:a42dc065-de42-4d5a-9758-ab56f70d3799" + "WESTUS:20200408T064334Z:eeabccff-c4f7-40cb-aa15-2bb7a7badfc8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:08 GMT" + "Wed, 08 Apr 2020 06:43:34 GMT" ], "Content-Length": [ "29" @@ -2152,16 +2534,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/d788c55f-ba1d-4277-bba1-7eecacd25c5f?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Q3ODhjNTVmLWJhMWQtNDI3Ny1iYmExLTdlZWNhY2QyNWM1Zj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/19cc001d-50c2-4083-99ce-de67a4d918c1?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE5Y2MwMDFkLTUwYzItNDA4My05OWNlLWRlNjdhNGQ5MThjMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -2172,13 +2554,13 @@ "no-cache" ], "x-ms-request-id": [ - "1297cb9c-f0d7-403f-8235-8c75aded86b2" + "833e2e23-507f-4b2a-b57f-e473807edb22" ], "x-ms-correlation-request-id": [ - "f408db7f-c644-4bfe-b667-e0bf760a51b3" + "a89c5ad8-47c8-4508-a4f8-ab6fa78e72ba" ], "x-ms-arm-service-request-id": [ - "345d7950-b137-4914-9bfc-559ecb698f93" + "2c9dfebd-6994-4a6e-b449-203c8d59cfca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2191,13 +2573,13 @@ "11998" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135620Z:f408db7f-c644-4bfe-b667-e0bf760a51b3" + "WESTUS:20200408T064345Z:a89c5ad8-47c8-4508-a4f8-ab6fa78e72ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:20 GMT" + "Wed, 08 Apr 2020 06:43:45 GMT" ], "Content-Length": [ "29" @@ -2213,22 +2595,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps9548/providers/Microsoft.Network/localNetworkGateways/ps8914?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzOTU0OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM4OTE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c56a7494-c361-4034-b73e-88a3514e19e4" + "2b5a663e-7245-48f9-ac5c-a89810795e67" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -2239,44 +2621,248 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/869699e1-dfa2-4732-8e03-96a09c07185f?api-version=2019-12-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/e7d1a000-73db-4270-b3f5-a20b023c839c?api-version=2019-12-01" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "869699e1-dfa2-4732-8e03-96a09c07185f" + "e7d1a000-73db-4270-b3f5-a20b023c839c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/869699e1-dfa2-4732-8e03-96a09c07185f?api-version=2019-12-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/e7d1a000-73db-4270-b3f5-a20b023c839c?api-version=2019-12-01" ], "x-ms-correlation-request-id": [ - "97fbb94e-2182-4487-99c5-a60dcf87645e" + "c0386590-af62-4116-94b4-b3374b4ef3bc" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "d597151b-8dc7-4f9e-8f34-025c45653659" + "fc69879a-66dd-452a-8a74-23e4e9bf7d23" ], "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:20200408T064347Z:c0386590-af62-4116-94b4-b3374b4ef3bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 08 Apr 2020 06:43:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/e7d1a000-73db-4270-b3f5-a20b023c839c?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U3ZDFhMDAwLTczZGItNDI3MC1iM2Y1LWEyMGIwMjNjODM5Yz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fe9900fc-f866-4ebe-b9fc-194cb4929d7f" + ], + "x-ms-correlation-request-id": [ + "718b5ea4-0eec-45a0-ab54-32fc959a2174" + ], + "x-ms-arm-service-request-id": [ + "42cf57cf-0282-486f-b43d-0a0724a9150f" + ], + "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:20200408T064357Z:718b5ea4-0eec-45a0-ab54-32fc959a2174" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 08 Apr 2020 06:43:56 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/e7d1a000-73db-4270-b3f5-a20b023c839c?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2U3ZDFhMDAwLTczZGItNDI3MC1iM2Y1LWEyMGIwMjNjODM5Yz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/e7d1a000-73db-4270-b3f5-a20b023c839c?api-version=2019-12-01" + ], + "x-ms-request-id": [ + "e7d1a000-73db-4270-b3f5-a20b023c839c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/e7d1a000-73db-4270-b3f5-a20b023c839c?api-version=2019-12-01" + ], + "x-ms-correlation-request-id": [ + "c0386590-af62-4116-94b4-b3374b4ef3bc" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "fc69879a-66dd-452a-8a74-23e4e9bf7d23" + ], + "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": [ - "WESTUS2:20200310T135621Z:97fbb94e-2182-4487-99c5-a60dcf87645e" + "WESTUS:20200408T064357Z:1addcd66-bad1-42bb-8d48-e6add34c63df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:21 GMT" + "Wed, 08 Apr 2020 06:43:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/ps6908/providers/Microsoft.Network/localNetworkGateways/ps5368Fqdn?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlR3JvdXBzL3BzNjkwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvcHM1MzY4RnFkbj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ae807ea-709a-453e-8a2c-df8dcaa276af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/fd37d2db-0b7a-4ed9-ad26-8de691f07aad?api-version=2019-12-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fd37d2db-0b7a-4ed9-ad26-8de691f07aad" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/fd37d2db-0b7a-4ed9-ad26-8de691f07aad?api-version=2019-12-01" + ], + "x-ms-correlation-request-id": [ + "3412dfa5-d33d-46f3-8581-12425fe82fac" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "6b8b6104-f0fa-4807-9a47-de2bd3ed2847" + ], + "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:20200408T064358Z:3412dfa5-d33d-46f3-8581-12425fe82fac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 08 Apr 2020 06:43:57 GMT" ], "Expires": [ "-1" @@ -2289,16 +2875,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/869699e1-dfa2-4732-8e03-96a09c07185f?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg2OTY5OWUxLWRmYTItNDczMi04ZTAzLTk2YTA5YzA3MTg1Zj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/fd37d2db-0b7a-4ed9-ad26-8de691f07aad?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZkMzdkMmRiLTBiN2EtNGVkOS1hZDI2LThkZTY5MWYwN2FhZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -2309,13 +2895,13 @@ "no-cache" ], "x-ms-request-id": [ - "e712b61e-5ca2-4e3d-92ac-d002564525ef" + "ef5926e1-0a8c-4295-bccb-5fc7de38d598" ], "x-ms-correlation-request-id": [ - "56fed2cc-f7c8-49dc-9c21-60d8b89abf34" + "b1107415-d5c1-4617-a70c-2ac9a2993a42" ], "x-ms-arm-service-request-id": [ - "8373cd05-c0a9-4ba5-b95a-c2916f5c70f6" + "c16db35d-9461-4966-a8dd-3e25f0ed749e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2325,16 +2911,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135631Z:56fed2cc-f7c8-49dc-9c21-60d8b89abf34" + "WESTUS:20200408T064408Z:b1107415-d5c1-4617-a70c-2ac9a2993a42" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:31 GMT" + "Wed, 08 Apr 2020 06:44:07 GMT" ], "Content-Length": [ "29" @@ -2350,16 +2936,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/869699e1-dfa2-4732-8e03-96a09c07185f?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzg2OTY5OWUxLWRmYTItNDczMi04ZTAzLTk2YTA5YzA3MTg1Zj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/fd37d2db-0b7a-4ed9-ad26-8de691f07aad?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2ZkMzdkMmRiLTBiN2EtNGVkOS1hZDI2LThkZTY5MWYwN2FhZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.19.0.0" ] }, "ResponseHeaders": { @@ -2370,22 +2956,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/869699e1-dfa2-4732-8e03-96a09c07185f?api-version=2019-12-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operationResults/fd37d2db-0b7a-4ed9-ad26-8de691f07aad?api-version=2019-12-01" ], "x-ms-request-id": [ - "869699e1-dfa2-4732-8e03-96a09c07185f" + "fd37d2db-0b7a-4ed9-ad26-8de691f07aad" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/869699e1-dfa2-4732-8e03-96a09c07185f?api-version=2019-12-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/providers/Microsoft.Network/locations/westcentralus/operations/fd37d2db-0b7a-4ed9-ad26-8de691f07aad?api-version=2019-12-01" ], "x-ms-correlation-request-id": [ - "97fbb94e-2182-4487-99c5-a60dcf87645e" + "3412dfa5-d33d-46f3-8581-12425fe82fac" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "d597151b-8dc7-4f9e-8f34-025c45653659" + "6b8b6104-f0fa-4807-9a47-de2bd3ed2847" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2395,16 +2981,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135631Z:9d78b92f-2c90-46f3-9625-9cc6031e9f39" + "WESTUS:20200408T064408Z:66527c0f-b395-46e7-8361-bde8b5364bb2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:31 GMT" + "Wed, 08 Apr 2020 06:44:07 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2417,22 +3003,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps9548?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzOTU0OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourcegroups/ps6908?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L3Jlc291cmNlZ3JvdXBzL3BzNjkwOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abb2091c-f748-4e02-92fb-c47df1761fd5" + "1cac3b41-6e75-4699-8eec-c2ee97904c93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -2443,7 +3029,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MDgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2452,13 +3038,13 @@ "14999" ], "x-ms-request-id": [ - "5e8352fc-c4f1-4861-9611-3f495d0e10c6" + "81e71e49-1736-42cf-957f-b7223523ad0b" ], "x-ms-correlation-request-id": [ - "5e8352fc-c4f1-4861-9611-3f495d0e10c6" + "81e71e49-1736-42cf-957f-b7223523ad0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135633Z:5e8352fc-c4f1-4861-9611-3f495d0e10c6" + "WESTUS:20200408T064410Z:81e71e49-1736-42cf-957f-b7223523ad0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2467,7 +3053,7 @@ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:32 GMT" + "Wed, 08 Apr 2020 06:44:10 GMT" ], "Expires": [ "-1" @@ -2480,16 +3066,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5EZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MDgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1EZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -2500,22 +3086,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MDgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-request-id": [ - "dd517308-2471-494b-8fb7-8a1105fcbcb2" + "386b01de-93bb-4498-ac14-4fdb65df666f" ], "x-ms-correlation-request-id": [ - "dd517308-2471-494b-8fb7-8a1105fcbcb2" + "386b01de-93bb-4498-ac14-4fdb65df666f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135648Z:dd517308-2471-494b-8fb7-8a1105fcbcb2" + "WESTUS:20200408T064426Z:386b01de-93bb-4498-ac14-4fdb65df666f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2524,7 +3110,7 @@ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:56:48 GMT" + "Wed, 08 Apr 2020 06:44:25 GMT" ], "Expires": [ "-1" @@ -2537,16 +3123,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5EZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MDgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1EZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -2557,22 +3143,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MDgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-request-id": [ - "7ed556c6-3205-4a5c-962b-ceda50d67efd" + "0dd963d0-2d04-48c5-a0a0-6de7add000cf" ], "x-ms-correlation-request-id": [ - "7ed556c6-3205-4a5c-962b-ceda50d67efd" + "0dd963d0-2d04-48c5-a0a0-6de7add000cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135703Z:7ed556c6-3205-4a5c-962b-ceda50d67efd" + "WESTUS:20200408T064441Z:0dd963d0-2d04-48c5-a0a0-6de7add000cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2581,7 +3167,7 @@ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:57:03 GMT" + "Wed, 08 Apr 2020 06:44:40 GMT" ], "Expires": [ "-1" @@ -2594,16 +3180,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5EZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MDgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1EZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -2614,16 +3200,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11997" ], "x-ms-request-id": [ - "a4596dac-4a95-4e2a-bf27-00d648430413" + "7f57f24a-77cf-47f0-8cf8-e5acdbee62db" ], "x-ms-correlation-request-id": [ - "a4596dac-4a95-4e2a-bf27-00d648430413" + "7f57f24a-77cf-47f0-8cf8-e5acdbee62db" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135718Z:a4596dac-4a95-4e2a-bf27-00d648430413" + "WESTUS:20200408T064456Z:7f57f24a-77cf-47f0-8cf8-e5acdbee62db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2632,7 +3218,7 @@ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:57:17 GMT" + "Wed, 08 Apr 2020 06:44:55 GMT" ], "Expires": [ "-1" @@ -2645,16 +3231,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1NDgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU5EZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5MDgtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjFmMWRlZWQtYWY2MC00YmFiLTkyMjMtNjVkMzQwNDYyZTI0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU1EZ3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.28008.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.5" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" ] }, "ResponseHeaders": { @@ -2665,16 +3251,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11996" ], "x-ms-request-id": [ - "69c48a8f-4134-4458-96d3-717a4b163260" + "331b95b3-9f36-4cb7-bb99-0ed51062cc63" ], "x-ms-correlation-request-id": [ - "69c48a8f-4134-4458-96d3-717a4b163260" + "331b95b3-9f36-4cb7-bb99-0ed51062cc63" ], "x-ms-routing-request-id": [ - "WESTUS2:20200310T135718Z:69c48a8f-4134-4458-96d3-717a4b163260" + "WESTUS:20200408T064456Z:331b95b3-9f36-4cb7-bb99-0ed51062cc63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2683,7 +3269,7 @@ "nosniff" ], "Date": [ - "Tue, 10 Mar 2020 13:57:17 GMT" + "Wed, 08 Apr 2020 06:44:55 GMT" ], "Expires": [ "-1" @@ -2698,8 +3284,8 @@ ], "Names": { "Test-LocalNetworkGatewayCRUD": [ - "ps9548", - "ps8914" + "ps6908", + "ps5368" ] }, "Variables": { diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 6de1d57e8132..0e2d4cf8d2ca 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -19,6 +19,9 @@ ---> ## Upcoming Release +* Updated cmdlets to enable FQDN based LocalNetworkGateways and VpnSites + - `New-AzLocalNetworkGateway` + - `New-AzVpnSiteLink` * Add Support for IPv6 address family in ExpressRouteCircuitConnectionConfig (Global Reach) - Added Cmdlet diff --git a/src/Network/Network/Cortex/CortexParameterSetNames.cs b/src/Network/Network/Cortex/CortexParameterSetNames.cs index 5c10e165443e..0daf953dcbc9 100644 --- a/src/Network/Network/Cortex/CortexParameterSetNames.cs +++ b/src/Network/Network/Cortex/CortexParameterSetNames.cs @@ -42,6 +42,9 @@ internal static class CortexParameterSetNames internal const string ByVpnSiteName = "ByVpnSiteName"; internal const string ByVpnSiteIpAddress = "ByVpnSiteIpAddress"; internal const string ByVpnSiteLinkObject = "ByVpnSiteLinkObject"; + + internal const string ByVpnSiteLinkIpAddress = "ByVpnSiteLinkIpAddress"; + internal const string ByVpnSiteLinkFqdn = "ByVpnSiteLinkFqdn"; internal const string ByVpnConnectionObject = "ByVpnConnectionObject"; internal const string ByVpnConnectionResourceId = "ByVpnConnectionResourceId"; diff --git a/src/Network/Network/Cortex/VpnSite/NewAzVpnSiteLinkCommand.cs b/src/Network/Network/Cortex/VpnSite/NewAzVpnSiteLinkCommand.cs index 13b38410cc76..e2c9935d3a42 100644 --- a/src/Network/Network/Cortex/VpnSite/NewAzVpnSiteLinkCommand.cs +++ b/src/Network/Network/Cortex/VpnSite/NewAzVpnSiteLinkCommand.cs @@ -31,12 +31,18 @@ public class NewAzVpnSiteLinkCommand : NetworkBaseCmdlet [ValidateNotNullOrEmpty] public string Name { get; set; } - [Parameter( - Mandatory = true, + [Parameter(Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVpnSiteLinkIpAddress, HelpMessage = "The Next Hop IpAddress.")] [ValidateNotNullOrEmpty] public string IPAddress { get; set; } + [Parameter(Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVpnSiteLinkFqdn, + HelpMessage = "The Next Hop Fqdn.")] + [ValidateNotNullOrEmpty] + public string Fqdn { get; set; } + [Parameter( Mandatory = false, HelpMessage = "Link Provider Name.")] @@ -64,9 +70,30 @@ public override void Execute() var vpnSiteLink = new PSVpnSiteLink { Name = this.Name, - IpAddress = this.IPAddress }; + if (ParameterSetName.Contains(CortexParameterSetNames.ByVpnSiteLinkIpAddress)) + { + System.Net.IPAddress ipAddress; + if (string.IsNullOrWhiteSpace(this.IPAddress) || + !System.Net.IPAddress.TryParse(this.IPAddress, out ipAddress)) + { + throw new PSArgumentException(Properties.Resources.InvalidIPAddress); + } + + vpnSiteLink.IpAddress = this.IPAddress; + vpnSiteLink.Fqdn = string.Empty; + } + else if (ParameterSetName.Contains(CortexParameterSetNames.ByVpnSiteLinkFqdn)) + { + if (string.IsNullOrWhiteSpace(this.Fqdn)) + { + throw new PSArgumentException(Properties.Resources.InvalidFqdn); + } + vpnSiteLink.Fqdn = this.Fqdn; + vpnSiteLink.IpAddress = string.Empty; + } + if (BGPAsn > 0 || !string.IsNullOrWhiteSpace(BGPPeeringAddress)) { vpnSiteLink.BgpProperties = ValidateAndCreatePSVpnLinkBgpSettings(BGPAsn, BGPPeeringAddress); diff --git a/src/Network/Network/LocalNetworkGateway/NewAzureLocalNetworkGatewayCommand.cs b/src/Network/Network/LocalNetworkGateway/NewAzureLocalNetworkGatewayCommand.cs index 8488b72b98a1..9e0eaef7cbf0 100644 --- a/src/Network/Network/LocalNetworkGateway/NewAzureLocalNetworkGatewayCommand.cs +++ b/src/Network/Network/LocalNetworkGateway/NewAzureLocalNetworkGatewayCommand.cs @@ -28,6 +28,9 @@ namespace Microsoft.Azure.Commands.Network [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "LocalNetworkGateway", SupportsShouldProcess = true),OutputType(typeof(PSLocalNetworkGateway))] public class NewAzureLocalNetworkGatewayCommand : LocalNetworkGatewayBaseCmdlet { + public const string ByLocalNetworkGatewayIpAddress = "ByLocalNetworkGatewayIpAddress"; + public const string ByLocalNetworkGatewayFqdn = "ByLocalNetworkGatewayFqdn"; + [Alias("ResourceName")] [Parameter( Mandatory = true, @@ -53,11 +56,19 @@ public class NewAzureLocalNetworkGatewayCommand : LocalNetworkGatewayBaseCmdlet public virtual string Location { get; set; } [Parameter( - Mandatory = false, - ValueFromPipelineByPropertyName = true, - HelpMessage = "IP address of local network gateway.")] + Mandatory = false, + ValueFromPipelineByPropertyName = true, + ParameterSetName = ByLocalNetworkGatewayIpAddress, + HelpMessage = "IP address of local network gateway.")] public string GatewayIpAddress { get; set; } + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + ParameterSetName = ByLocalNetworkGatewayFqdn, + HelpMessage = "FQDN of local network gateway.")] + public string Fqdn { get; set; } + [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, @@ -122,7 +133,17 @@ private PSLocalNetworkGateway CreateLocalNetworkGateway() localnetGateway.Location = this.Location; localnetGateway.LocalNetworkAddressSpace = new PSAddressSpace(); localnetGateway.LocalNetworkAddressSpace.AddressPrefixes = this.AddressPrefix?.ToList(); - localnetGateway.GatewayIpAddress = this.GatewayIpAddress; + + if (ParameterSetName.Contains(ByLocalNetworkGatewayIpAddress)) + { + localnetGateway.GatewayIpAddress = this.GatewayIpAddress; + localnetGateway.Fqdn = string.Empty; + } + else if (ParameterSetName.Contains(ByLocalNetworkGatewayFqdn)) + { + localnetGateway.Fqdn = this.Fqdn; + localnetGateway.GatewayIpAddress = string.Empty; + } if (this.PeerWeight < 0) { diff --git a/src/Network/Network/Models/Cortex/PSVpnSiteLink.cs b/src/Network/Network/Models/Cortex/PSVpnSiteLink.cs index d0121ded7ed7..a93f35a3c321 100644 --- a/src/Network/Network/Models/Cortex/PSVpnSiteLink.cs +++ b/src/Network/Network/Models/Cortex/PSVpnSiteLink.cs @@ -10,6 +10,9 @@ public class PSVpnSiteLink : PSChildResource [Ps1Xml(Label = "Ip Address", Target = ViewControl.Table)] public string IpAddress { get; set; } + [Ps1Xml(Target = ViewControl.Table)] + public string Fqdn { get; set; } + public PSVpnLinkProviderProperties LinkProperties { get; set; } public PSVpnLinkBgpSettings BgpProperties { get; set; } diff --git a/src/Network/Network/Models/PSLocalNetworkGateway.cs b/src/Network/Network/Models/PSLocalNetworkGateway.cs index ca4615e98dfa..6e85b6f1a3b9 100644 --- a/src/Network/Network/Models/PSLocalNetworkGateway.cs +++ b/src/Network/Network/Models/PSLocalNetworkGateway.cs @@ -23,6 +23,9 @@ public class PSLocalNetworkGateway : PSTopLevelResource [Ps1Xml(Target = ViewControl.Table)] public string GatewayIpAddress { get; set; } + [Ps1Xml(Target = ViewControl.Table)] + public string Fqdn { get; set; } + public PSAddressSpace LocalNetworkAddressSpace { get; set; } [Ps1Xml(Target = ViewControl.Table)] diff --git a/src/Network/Network/Network.format.ps1xml b/src/Network/Network/Network.format.ps1xml index cfede6455296..4e212827ca67 100644 --- a/src/Network/Network/Network.format.ps1xml +++ b/src/Network/Network/Network.format.ps1xml @@ -1173,6 +1173,10 @@ GatewayIpAddress + + + Fqdn + AddressSpaceText diff --git a/src/Network/Network/Properties/Resources.Designer.cs b/src/Network/Network/Properties/Resources.Designer.cs index 6f087d525389..960dc061b631 100644 --- a/src/Network/Network/Properties/Resources.Designer.cs +++ b/src/Network/Network/Properties/Resources.Designer.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Network.Properties { // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { @@ -661,6 +661,15 @@ internal static string InvalidFlowLogResourceId { } } + /// + /// Looks up a localized string similar to The Fqdn specified is invalid.. + /// + internal static string InvalidFqdn { + get { + return ResourceManager.GetString("InvalidFqdn", resourceCulture); + } + } + /// /// Looks up a localized string similar to Invalid HTTP request header in HTTPConfiguration. Both name and value should be populated.. /// diff --git a/src/Network/Network/Properties/Resources.resx b/src/Network/Network/Properties/Resources.resx index c46da29823a6..1075e5165964 100644 --- a/src/Network/Network/Properties/Resources.resx +++ b/src/Network/Network/Properties/Resources.resx @@ -656,6 +656,9 @@ Provided flowLog resourceId is invalid. + + The Fqdn specified is invalid. + Private Peering needs to be configured on the Express Route Circuit. diff --git a/src/Network/Network/help/New-AzLocalNetworkGateway.md b/src/Network/Network/help/New-AzLocalNetworkGateway.md index 1524fe0849be..38cd3e2d1711 100644 --- a/src/Network/Network/help/New-AzLocalNetworkGateway.md +++ b/src/Network/Network/help/New-AzLocalNetworkGateway.md @@ -13,6 +13,7 @@ Creates a Local Network Gateway ## SYNTAX +### ByLocalNetworkGatewayIpAddress ``` New-AzLocalNetworkGateway -Name -ResourceGroupName -Location [-GatewayIpAddress ] [-AddressPrefix ] [-Asn ] [-BgpPeeringAddress ] @@ -20,6 +21,14 @@ New-AzLocalNetworkGateway -Name -ResourceGroupName -Location < [-WhatIf] [-Confirm] [] ``` +### ByLocalNetworkGatewayFqdn +``` +New-AzLocalNetworkGateway -Name -ResourceGroupName -Location [-Fqdn ] + [-AddressPrefix ] [-Asn ] [-BgpPeeringAddress ] [-PeerWeight ] + [-Tag ] [-Force] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + ## DESCRIPTION The Local Network Gateway is the object representing your VPN device On-Premises. The **New-AzLocalNetworkGateway** cmdlet creates the object representing your on-prem gateway @@ -123,10 +132,25 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Fqdn +FQDN of local network gateway. + +```yaml +Type: System.String +Parameter Sets: ByLocalNetworkGatewayFqdn +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -GatewayIpAddress ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByLocalNetworkGatewayIpAddress Aliases: Required: False @@ -238,7 +262,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/Network/Network/help/New-AzVpnSiteLink.md b/src/Network/Network/help/New-AzVpnSiteLink.md index ca1e57b6bc37..64f3fed4729c 100644 --- a/src/Network/Network/help/New-AzVpnSiteLink.md +++ b/src/Network/Network/help/New-AzVpnSiteLink.md @@ -12,12 +12,20 @@ Creates an Azure VpnSiteLink object. ## SYNTAX +### ByVpnSiteLinkIpAddress ``` New-AzVpnSiteLink -Name -IPAddress [-LinkProviderName ] [-LinkSpeedInMbps ] [-BGPAsn ] [-BGPPeeringAddress ] [-DefaultProfile ] [] ``` +### ByVpnSiteLinkFqdn +``` +New-AzVpnSiteLink -Name -Fqdn [-LinkProviderName ] [-LinkSpeedInMbps ] + [-BGPAsn ] [-BGPPeeringAddress ] [-DefaultProfile ] + [] +``` + ## DESCRIPTION Creates an Azure VpnSiteLink object. @@ -84,12 +92,27 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Fqdn +The Next Hop Fqdn. + +```yaml +Type: System.String +Parameter Sets: ByVpnSiteLinkFqdn +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -IPAddress The Next Hop IpAddress. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByVpnSiteLinkIpAddress Aliases: Required: True