diff --git a/src/Network/Network.Test/Network.Test.csproj b/src/Network/Network.Test/Network.Test.csproj
index 9269a5b96d70..772200db410d 100644
--- a/src/Network/Network.Test/Network.Test.csproj
+++ b/src/Network/Network.Test/Network.Test.csproj
@@ -23,6 +23,10 @@
+
+
+
+
@@ -35,4 +39,8 @@
+
+
+
+
diff --git a/src/Network/Network.Test/ScenarioTests/NetworkVirtualApplianceTests.cs b/src/Network/Network.Test/ScenarioTests/NetworkVirtualApplianceTests.cs
new file mode 100644
index 000000000000..edfc1201ca24
--- /dev/null
+++ b/src/Network/Network.Test/ScenarioTests/NetworkVirtualApplianceTests.cs
@@ -0,0 +1,44 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.Commands.Network.Test.ScenarioTests;
+using Microsoft.WindowsAzure.Commands.ScenarioTest;
+using Xunit;
+
+namespace Commands.Network.Test.ScenarioTests
+{
+ public class NetworkVirtualApplianceTests : NetworkTestRunner
+ {
+ public NetworkVirtualApplianceTests(Xunit.Abstractions.ITestOutputHelper output)
+ : base(output)
+ {
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ [Trait(Category.Owner, NrpTeamAlias.pgtm)]
+ public void TestNetworkVirtualApplianceCRUD()
+ {
+ TestRunner.RunTestScript(string.Format("Test-NetworkVirtualApplianceCRUD"));
+ }
+
+ [Fact(Skip = "A bug is being fixed by Nfv-Rp team")]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ [Trait(Category.Owner, NrpTeamAlias.pgtm)]
+ public void TestVirtualApplianceSiteCRUD()
+ {
+ TestRunner.RunTestScript("Test-VirtualApplianceSiteCRUD");
+ }
+ }
+}
diff --git a/src/Network/Network.Test/ScenarioTests/NetworkVirtualApplianceTests.ps1 b/src/Network/Network.Test/ScenarioTests/NetworkVirtualApplianceTests.ps1
new file mode 100644
index 000000000000..be68c39c4c86
--- /dev/null
+++ b/src/Network/Network.Test/ScenarioTests/NetworkVirtualApplianceTests.ps1
@@ -0,0 +1,118 @@
+# ----------------------------------------------------------------------------------
+#
+# Copyright Microsoft Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ----------------------------------------------------------------------------------
+
+function Check-CmdletReturnType
+{
+ param($cmdletName, $cmdletReturn)
+
+ $cmdletData = Get-Command $cmdletName
+ Assert-NotNull $cmdletData
+ [array]$cmdletReturnTypes = $cmdletData.OutputType.Name | Foreach-Object { return ($_ -replace "Microsoft.Azure.Commands.Network.Models.","") }
+ [array]$cmdletReturnTypes = $cmdletReturnTypes | Foreach-Object { return ($_ -replace "System.","") }
+ $realReturnType = $cmdletReturn.GetType().Name -replace "Microsoft.Azure.Commands.Network.Models.",""
+ return $cmdletReturnTypes -contains $realReturnType
+}
+
+<#
+.SYNOPSIS
+Test creating new NetworkVirtualAppliance
+#>
+function Test-NetworkVirtualApplianceCRUD
+{
+ $rgname = Get-ResourceGroupName
+
+ # The commands are not supported in all regions yet.
+ $location = "eastus2"
+ $nvaname = Get-ResourceName
+ $wanname = Get-ResourceName
+ $hubname = Get-ResourceName
+ $resourceTypeParent = "Microsoft.Network/networkVirtualAppliance"
+ $vendor = "barracuda sdwan release"
+ $scaleunit = 1
+ $version = 'latest'
+ $newasn = 1271
+ $asn=1270
+ $prefix = "10.0.0.0/16"
+ try{
+ $resourceGroup = New-AzResourceGroup -Name $rgname -Location $location
+ $sku = New-AzVirtualApplianceSkuProperty -VendorName $vendor -BundledScaleUnit $scaleunit -MarketPlaceVersion $version
+ Assert-NotNull $sku
+
+ $wan = New-AzVirtualWan -ResourceGroupName $rgname -Name $wanname -Location $location
+ $hub = New-AzVirtualHub -ResourceGroupName $rgname -Name $hubname -Location $location -VirtualWan $wan -AddressPrefix $prefix
+ $nva = New-AzNetworkVirtualAppliance -ResourceGroupName $rgname -Name $nvaname -Location $location -VirtualApplianceAsn $asn -VirtualHubId $hub.Id -Sku $sku -CloudInitConfiguration "echo hi"
+ Assert-NotNull $nva
+
+ $getnva = Get-AzNetworkVirtualAppliance -ResourceGroupName $rgname -Name $nvaname
+ Assert-NotNull $getnva
+
+ ## There is a bug in the update call in the nfvrp. The NfvRp team will record the powershell tests once fixed.
+ # $updatednva = Update-AzNetworkVirtualAppliance -ResourceGroupName $rgname -Name $nvaname -VirtualApplianceAsn $newasn -Force
+ # Assert-True { $updatednva.VirtualApplianceAsn -eq $newasn}
+
+ $rmresult = Remove-AzNetworkVirtualAppliance -ResourceGroupName $rgname -Name $nvaname -Force -PassThru
+ Assert-True { $true }
+ }
+ finally{
+ # Clean up.
+ Clean-ResourceGroup $rgname
+ }
+}
+
+<#
+.SYNOPSIS
+Test creating new VirtualApplianceSite
+#>
+function Test-VirtualApplianceSiteCRUD
+{
+ $rgname = Get-ResourceGroupName
+
+ # The commands are not supported in all regions yet.
+ $location = "eastus2"
+ $nvaname = Get-ResourceName
+ $wanname = Get-ResourceName
+ $hubname = Get-ResourceName
+ $sitename = Get-ResourceName
+ $resourceTypeParent = "Microsoft.Network/networkVirtualAppliance"
+ $vendor = "barracuda sdwan release"
+ $scaleunit = 1
+ $version = 'latest'
+ $asn = 1270
+ $prefix = "10.0.0.0/16"
+ $siteprefix = "10.0.1.0/24"
+ $newsiteprefix = "10.0.2.0/24"
+ try{
+ $resourceGroup = New-AzResourceGroup -Name $rgname -Location $location
+ $sku = New-AzVirtualApplianceSkuProperty -VendorName $vendor -BundledScaleUnit $scaleunit -MarketPlaceVersion $version
+ Assert-NotNull $sku
+
+ $wan = New-AzVirtualWan -ResourceGroupName $rgname -Name $wanname -Location $location
+ $hub = New-AzVirtualHub -ResourceGroupName $rgname -Name $hubname -Location $location -VirtualWan $wan -AddressPrefix $prefix
+ $nva = New-AzNetworkVirtualAppliance -ResourceGroupName $rgname -Name $nvaname -Location $location -VirtualApplianceAsn $asn -VirtualHubId /subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/sliceTestRG/providers/Microsoft.Network/virtualHubs/sliceHub -Sku $sku -CloudInitConfiguration "echo hi"
+ $getnva = Get-AzNetworkVirtualAppliance -ResourceGroupName $rgname -Name $nvaname
+
+ $o365Policy = New-AzOffice365PolicyProperty -Allow -Optimize
+ $site = New-AzVirtualApplianceSite -Name $sitename -ResourceGroupName $rgname -AddressPrefix $siteprefix -O365Policy $o365Policy -NetworkVirtualApplianceId $getnva.Id
+ $getsite = Get-AzVirtualApplianceSite -Name $sitename -ResourceGroupName $rgname -NetworkVirtualApplianceId $getnva.Id
+ $setsite = Update-AzVirtualApplianceSite -Name $sitename -ResourceGroupName $rgname -NetworkVirtualApplianceId $getnva.Id -AddressPrefix $newsiteprefix -Force
+ Remove-AzVirtualApplianceSite -Name $sitename -ResourceGroupName $rgname -NetworkVirtualApplianceId $getnva.Id -Force
+ Remove-AzNetworkVirtualAppliance -ResourceGroupName $rgname -Name $nvaname -Force
+ }
+ finally{
+ # Clean up.
+ Clean-ResourceGroup $rgname
+ }
+}
+
+
diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkVirtualApplianceTests/TestNetworkVirtualApplianceCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkVirtualApplianceTests/TestNetworkVirtualApplianceCRUD.json
new file mode 100644
index 000000000000..aa3d88ed4aac
--- /dev/null
+++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkVirtualApplianceTests/TestNetworkVirtualApplianceCRUD.json
@@ -0,0 +1,14031 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourcegroups/ps7173?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlZ3JvdXBzL3BzNzE3Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d812d4b1-5be5-4a9f-b87a-7dfd852a079b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "43e5a24f-1541-44a4-becd-423793b4b93c"
+ ],
+ "x-ms-correlation-request-id": [
+ "43e5a24f-1541-44a4-becd-423793b4b93c"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052616Z:43e5a24f-1541-44a4-becd-423793b4b93c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:26:16 GMT"
+ ],
+ "Content-Length": [
+ "166"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173\",\r\n \"name\": \"ps7173\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualWans/ps587?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlR3JvdXBzL3BzNzE3My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM1ODc/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "987ec55a-9c7f-4749-aac2-82ba75c50536"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "b48d3c71-31ea-4cac-9232-47c5681ec4b4"
+ ],
+ "x-ms-correlation-request-id": [
+ "b48d3c71-31ea-4cac-9232-47c5681ec4b4"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052618Z:b48d3c71-31ea-4cac-9232-47c5681ec4b4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:26:18 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "213"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualWans/ps587' under resource group 'ps7173' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualWans/ps587?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlR3JvdXBzL3BzNzE3My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM1ODc/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"f41eb873-3e03-4336-8df5-6c445f6099b5\""
+ ],
+ "x-ms-request-id": [
+ "29562919-9638-499d-b50f-fbf38ea1f70d"
+ ],
+ "x-ms-correlation-request-id": [
+ "05c7f477-5caf-42ae-8ee5-fd477409ae74"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e9eeaadd-291e-4115-9dcb-980af64dd3cd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11916"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052635Z:05c7f477-5caf-42ae-8ee5-fd477409ae74"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:26:34 GMT"
+ ],
+ "Content-Length": [
+ "495"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps587\",\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualWans/ps587\",\r\n \"etag\": \"W/\\\"f41eb873-3e03-4336-8df5-6c445f6099b5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualWans/ps587?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlR3JvdXBzL3BzNzE3My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM1ODc/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d35d9743-461f-459f-b763-5a24c13331f8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"f41eb873-3e03-4336-8df5-6c445f6099b5\""
+ ],
+ "x-ms-request-id": [
+ "87190233-2998-4014-bf08-d70ca96e980c"
+ ],
+ "x-ms-correlation-request-id": [
+ "a731c6d7-3f0c-494a-815a-26f635fb0306"
+ ],
+ "x-ms-arm-service-request-id": [
+ "a8faf330-7b21-4f8b-927a-4dea68ec60fc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11915"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052635Z:a731c6d7-3f0c-494a-815a-26f635fb0306"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:26:34 GMT"
+ ],
+ "Content-Length": [
+ "495"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps587\",\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualWans/ps587\",\r\n \"etag\": \"W/\\\"f41eb873-3e03-4336-8df5-6c445f6099b5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualWans/ps587?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlR3JvdXBzL3BzNzE3My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM1ODc/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "50712d9e-2df9-4abb-8d60-8bca766d86b4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"f41eb873-3e03-4336-8df5-6c445f6099b5\""
+ ],
+ "x-ms-request-id": [
+ "6a8adef3-31df-4963-9492-62d1306cb5ff"
+ ],
+ "x-ms-correlation-request-id": [
+ "f78bd96f-c912-4bfb-b7c7-2ff131e1bbac"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b2f573f9-fcc4-484d-a823-f0a5450c2545"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052638Z:f78bd96f-c912-4bfb-b7c7-2ff131e1bbac"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:26:38 GMT"
+ ],
+ "Content-Length": [
+ "495"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps587\",\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualWans/ps587\",\r\n \"etag\": \"W/\\\"f41eb873-3e03-4336-8df5-6c445f6099b5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualWans/ps587?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlR3JvdXBzL3BzNzE3My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM1ODc/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"allowBranchToBranchTraffic\": false,\r\n \"allowVnetToVnetTraffic\": true,\r\n \"type\": \"Standard\"\r\n },\r\n \"location\": \"eastus2\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5e41464c-4a73-40e7-b308-f8440a25cd87"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "157"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "fd8af0df-ef7f-4ccf-b23b-300a1a37d758"
+ ],
+ "Azure-AsyncOperation": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/fd8af0df-ef7f-4ccf-b23b-300a1a37d758?api-version=2020-05-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "914f8433-30cc-4a00-9dd6-2faabeb14718"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "6a1b83df-4a32-407d-8b96-12dc110d3912"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052624Z:914f8433-30cc-4a00-9dd6-2faabeb14718"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:26:23 GMT"
+ ],
+ "Content-Length": [
+ "494"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps587\",\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualWans/ps587\",\r\n \"etag\": \"W/\\\"ea600113-5756-45e9-b152-70bf08a03860\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": false,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/fd8af0df-ef7f-4ccf-b23b-300a1a37d758?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZkOGFmMGRmLWVmN2YtNGNjZi1iMjNiLTMwMGExYTM3ZDc1OD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "c3c1febd-8402-435e-8878-f59e99385637"
+ ],
+ "x-ms-correlation-request-id": [
+ "9c250a63-d3c6-4399-ab71-677b2f182cc5"
+ ],
+ "x-ms-arm-service-request-id": [
+ "97701708-8899-4a46-815a-12105fe2a335"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11917"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052635Z:9c250a63-d3c6-4399-ab71-677b2f182cc5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:26:34 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualHubs/ps6483?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlR3JvdXBzL3BzNzE3My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2NDgzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "abc59930-b195-41d8-879d-6bec24c7108c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "e07369e4-aef9-4fbe-81b4-15541a85856f"
+ ],
+ "x-ms-correlation-request-id": [
+ "e07369e4-aef9-4fbe-81b4-15541a85856f"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052637Z:e07369e4-aef9-4fbe-81b4-15541a85856f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:26:37 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "214"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualHubs/ps6483' under resource group 'ps7173' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualHubs/ps6483?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlR3JvdXBzL3BzNzE3My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2NDgzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b20c647d-2f55-4f0a-b29f-c58203f15920"
+ ],
+ "x-ms-correlation-request-id": [
+ "97016730-7e6b-4006-9c46-357094c3904b"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e7cc9dfc-175a-4f72-b5f3-fd9bea6ace4f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11958"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053214Z:97016730-7e6b-4006-9c46-357094c3904b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:32:14 GMT"
+ ],
+ "Content-Length": [
+ "751"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps6483\",\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualHubs/ps6483\",\r\n \"etag\": \"W/\\\"4c1cf3bf-1cbc-4dd7-bcb6-50e114cc54cb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualWans/ps587\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualHubs/ps6483?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlR3JvdXBzL3BzNzE3My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM2NDgzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualWans/ps587\"\r\n },\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"sku\": \"Standard\",\r\n \"virtualRouterIps\": []\r\n },\r\n \"location\": \"eastus2\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ee5afd7b-1f24-43c8-9371-5c97d614c8e5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "343"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "885662bc-7997-443a-8e54-50ad96204a12"
+ ],
+ "Azure-AsyncOperation": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01"
+ ],
+ "x-ms-correlation-request-id": [
+ "df4a8289-52ae-4cf8-9d36-e7ad3cd5fec6"
+ ],
+ "Azure-AsyncNotification": [
+ "Enabled"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c2a658c6-6c48-4ebd-949a-304ec628343a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052642Z:df4a8289-52ae-4cf8-9d36-e7ad3cd5fec6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:26:42 GMT"
+ ],
+ "Content-Length": [
+ "742"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"ps6483\",\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualHubs/ps6483\",\r\n \"etag\": \"W/\\\"ac61c7e2-b789-46f6-b89a-98df01c1e94a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualWans/ps587\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "63727669-e954-4074-8f6b-d47dc6a85f4e"
+ ],
+ "x-ms-correlation-request-id": [
+ "19f89b20-71f5-46d0-932e-f2cef0c845ec"
+ ],
+ "x-ms-arm-service-request-id": [
+ "8138b065-6a39-446b-9b47-ff3ffe3111d0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052652Z:19f89b20-71f5-46d0-932e-f2cef0c845ec"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:26:52 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "4a3d980e-fdb9-470e-b0d4-5f44c5ddc97e"
+ ],
+ "x-ms-correlation-request-id": [
+ "86008360-649a-433d-a78f-8576175afbc3"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b8796976-451d-4ebc-9529-6c4293e6e476"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052703Z:86008360-649a-433d-a78f-8576175afbc3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:27:02 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c906a2b4-52a6-4333-8629-6c4b155ecf42"
+ ],
+ "x-ms-correlation-request-id": [
+ "5aeaa646-4800-4199-a336-8f102cd161e0"
+ ],
+ "x-ms-arm-service-request-id": [
+ "898aeed0-e800-40ba-b118-d19d794f8243"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052713Z:5aeaa646-4800-4199-a336-8f102cd161e0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:27:13 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "e30a4deb-eedd-48cb-8fe7-ef6367b89e8b"
+ ],
+ "x-ms-correlation-request-id": [
+ "d365bada-9758-475d-90ad-508100662e36"
+ ],
+ "x-ms-arm-service-request-id": [
+ "5370800a-26f7-4cd3-84bc-73cfd51481a2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052723Z:d365bada-9758-475d-90ad-508100662e36"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:27:23 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "47fd48be-a6a1-49f2-91b1-6021addeab91"
+ ],
+ "x-ms-correlation-request-id": [
+ "1dded6c7-013c-4869-8d23-8bc368666f93"
+ ],
+ "x-ms-arm-service-request-id": [
+ "be9da69e-7ba8-4845-a83b-fd31f16b12ab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052734Z:1dded6c7-013c-4869-8d23-8bc368666f93"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:27:33 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d07e910b-5660-4c1c-b3fd-d8041362f4cf"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5de14c3-e619-45f8-8f58-26ac56efb38a"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3b60e1f7-cbe2-4224-9c85-037166e0f15d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052744Z:e5de14c3-e619-45f8-8f58-26ac56efb38a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:27:44 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "198a3e20-d6ef-458b-95b6-2210a6273695"
+ ],
+ "x-ms-correlation-request-id": [
+ "d5a03ee0-d74e-4edf-b8d4-8422697250ae"
+ ],
+ "x-ms-arm-service-request-id": [
+ "b4d4dbdf-4c91-46ff-b78d-52772c9939dc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052754Z:d5a03ee0-d74e-4edf-b8d4-8422697250ae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:27:54 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "97819913-3ffd-49cf-93e4-d5f51c13a76f"
+ ],
+ "x-ms-correlation-request-id": [
+ "8aab3881-34dc-4d0a-8069-d3f2fb966f40"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c0c89629-2f14-4af5-bfe3-a618bbc0faa3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052805Z:8aab3881-34dc-4d0a-8069-d3f2fb966f40"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:28:04 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c57e5392-0829-4051-ae5e-c11dbb2c60e1"
+ ],
+ "x-ms-correlation-request-id": [
+ "2cc6b0e7-a1e2-4b92-b033-c7f852b78d83"
+ ],
+ "x-ms-arm-service-request-id": [
+ "ee76a31d-6d0c-423e-8d14-a6403a1633d1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052815Z:2cc6b0e7-a1e2-4b92-b033-c7f852b78d83"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:28:15 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "36de7f50-d051-4754-abcd-b12ccc99e256"
+ ],
+ "x-ms-correlation-request-id": [
+ "1605fb39-4ca6-44b1-b665-e55ccfd2e727"
+ ],
+ "x-ms-arm-service-request-id": [
+ "071002ec-0d80-4f88-bf2b-7282952fd1c1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052825Z:1605fb39-4ca6-44b1-b665-e55ccfd2e727"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:28:25 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "8b8fc42f-fe1f-48d9-9d9a-9725209551d3"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd03e773-5a91-4b4f-a5e2-3ff9e9f71c55"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e4daa93e-a9bc-4d9e-aa53-49e44c72cd75"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052836Z:cd03e773-5a91-4b4f-a5e2-3ff9e9f71c55"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:28:35 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3555d3d6-1dfe-4f53-9840-893461361e6e"
+ ],
+ "x-ms-correlation-request-id": [
+ "72f0a958-c7fd-4519-997d-3fc3a64af55d"
+ ],
+ "x-ms-arm-service-request-id": [
+ "38884564-4dbb-4356-aacf-313fe998ec4f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052846Z:72f0a958-c7fd-4519-997d-3fc3a64af55d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:28:45 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "5f409545-c0df-4988-bf93-db15cb9e6c01"
+ ],
+ "x-ms-correlation-request-id": [
+ "b72ac343-eb9c-4b3a-b07a-f52d204c809e"
+ ],
+ "x-ms-arm-service-request-id": [
+ "ded8299b-93e4-4463-8779-dbb22b91f02c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052856Z:b72ac343-eb9c-4b3a-b07a-f52d204c809e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:28:56 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "e7860e2e-108c-4a93-b398-b508ee4b6a20"
+ ],
+ "x-ms-correlation-request-id": [
+ "384ecaf4-374b-4de2-9b3b-e06b90520557"
+ ],
+ "x-ms-arm-service-request-id": [
+ "cae3bac2-093d-4698-9699-0bb73f8064cf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052907Z:384ecaf4-374b-4de2-9b3b-e06b90520557"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:29:07 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "189c7e28-8529-4557-aabb-15c6e3cf6e8d"
+ ],
+ "x-ms-correlation-request-id": [
+ "46882807-0530-4864-beeb-85e939bba3d3"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4d949fda-d786-4e52-b826-e6774af2f1d9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052917Z:46882807-0530-4864-beeb-85e939bba3d3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:29:17 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ce6804ac-baba-4988-9641-b80e0a7152ad"
+ ],
+ "x-ms-correlation-request-id": [
+ "a893f829-a625-4a22-9aff-91a6c80e9a00"
+ ],
+ "x-ms-arm-service-request-id": [
+ "c714fb0d-ef38-4b73-a4a1-9f4953ee50b7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052928Z:a893f829-a625-4a22-9aff-91a6c80e9a00"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:29:27 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d21cb95c-799d-4cf4-b5e0-3c9ebc471402"
+ ],
+ "x-ms-correlation-request-id": [
+ "7ba2d202-3133-49d8-845e-3e7aad6c121c"
+ ],
+ "x-ms-arm-service-request-id": [
+ "4ea4028b-d1e9-4699-8bf7-437e34e2737b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052938Z:7ba2d202-3133-49d8-845e-3e7aad6c121c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:29:37 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "cc0b03d6-804b-4de4-a532-2fdef0e6e2de"
+ ],
+ "x-ms-correlation-request-id": [
+ "8080bab5-af07-41be-842c-028b32161563"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1047f271-0eba-4813-97e0-fe2d93d1f852"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11973"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052948Z:8080bab5-af07-41be-842c-028b32161563"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:29:48 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "2939a04d-33f5-45e1-8208-934d033aa6cf"
+ ],
+ "x-ms-correlation-request-id": [
+ "27479c64-9ef2-4c7e-8d76-0dc874d0d770"
+ ],
+ "x-ms-arm-service-request-id": [
+ "62d3bbe8-fff1-4f48-82e5-bfdc1c56ad12"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11972"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T052959Z:27479c64-9ef2-4c7e-8d76-0dc874d0d770"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:29:59 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f8602f0f-f174-4843-bcad-2139ad4bb842"
+ ],
+ "x-ms-correlation-request-id": [
+ "4980c34e-5955-448f-80e7-91f989a49f98"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0e56eade-9dca-45fd-a123-73731d6c7bb9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11971"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053009Z:4980c34e-5955-448f-80e7-91f989a49f98"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:30:09 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "61845ef5-c380-4b5e-941d-662d33e48d58"
+ ],
+ "x-ms-correlation-request-id": [
+ "3eb477a7-e46a-48c1-a6ab-a8c0a7c67a91"
+ ],
+ "x-ms-arm-service-request-id": [
+ "757cbe34-2862-4f51-8ddb-04cad8ae86e4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11970"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053019Z:3eb477a7-e46a-48c1-a6ab-a8c0a7c67a91"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:30:19 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "52d5ed80-340c-4efb-9dfa-8adb3a3c36dd"
+ ],
+ "x-ms-correlation-request-id": [
+ "42fc23dd-ce83-4dce-b0fc-721cffa86a1a"
+ ],
+ "x-ms-arm-service-request-id": [
+ "1675ef0f-6d8b-4608-a14c-07914d9f9b25"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11969"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053030Z:42fc23dd-ce83-4dce-b0fc-721cffa86a1a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:30:29 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "36006bc1-2155-45af-b19f-7686c76e46dd"
+ ],
+ "x-ms-correlation-request-id": [
+ "04a0597e-c87c-4c98-a1b4-49a800c84bc8"
+ ],
+ "x-ms-arm-service-request-id": [
+ "d78ab273-755b-4828-9663-b18d02ea5492"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11968"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053040Z:04a0597e-c87c-4c98-a1b4-49a800c84bc8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:30:40 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "18631c80-fcae-404c-b257-b795582a58ae"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd52a4a7-8a0b-4de6-ab47-fae0bd83febd"
+ ],
+ "x-ms-arm-service-request-id": [
+ "5309f572-b735-4110-b675-a2faecd8cfe5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11967"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053050Z:dd52a4a7-8a0b-4de6-ab47-fae0bd83febd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:30:50 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "14fa700f-c11c-4767-8652-b17366caee5c"
+ ],
+ "x-ms-correlation-request-id": [
+ "f44a6c83-7a7a-4781-9ba7-7bb02149d988"
+ ],
+ "x-ms-arm-service-request-id": [
+ "cdecc70e-0028-4b81-851d-f6885356a28c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053101Z:f44a6c83-7a7a-4781-9ba7-7bb02149d988"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:31:01 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0d151c7a-727c-4019-8910-442bd7922eb0"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3ec9a79-9044-4b22-a578-e38d963fc013"
+ ],
+ "x-ms-arm-service-request-id": [
+ "d2c58b94-53aa-48ff-a20d-ff71cdd44b9b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11965"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053111Z:c3ec9a79-9044-4b22-a578-e38d963fc013"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:31:10 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "dd002935-695e-4e38-8061-0131ae7f6b64"
+ ],
+ "x-ms-correlation-request-id": [
+ "12c48b4f-46b3-494a-98c8-ec5ca8dc7102"
+ ],
+ "x-ms-arm-service-request-id": [
+ "3b2c92f0-d333-41e8-90a4-5cbc59da7d34"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11964"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053122Z:12c48b4f-46b3-494a-98c8-ec5ca8dc7102"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:31:22 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "50531fe1-2993-4549-a83f-802adb03dd0c"
+ ],
+ "x-ms-correlation-request-id": [
+ "523159aa-7fa3-401d-9f5e-24f0c4d3a0a2"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e30b24cd-d7c4-4da6-ba94-fcddd3b78ec8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11963"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053132Z:523159aa-7fa3-401d-9f5e-24f0c4d3a0a2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:31:32 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "350d05aa-741d-4f0b-867b-83da414479e4"
+ ],
+ "x-ms-correlation-request-id": [
+ "72a46c83-0802-474f-a6cc-2e0a4b26aa42"
+ ],
+ "x-ms-arm-service-request-id": [
+ "0e44ccd7-89d9-4859-835e-d452830fc022"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11962"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053142Z:72a46c83-0802-474f-a6cc-2e0a4b26aa42"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:31:42 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "36c9a868-9ab4-47f9-ae89-de5c1b01739e"
+ ],
+ "x-ms-correlation-request-id": [
+ "2cb03007-c385-4aee-b550-adf7fce83f7a"
+ ],
+ "x-ms-arm-service-request-id": [
+ "f1e2725c-be2d-48af-8e82-45779633eab3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11961"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053153Z:2cb03007-c385-4aee-b550-adf7fce83f7a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:31:53 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "dd1a3b4c-6d8d-46c2-a631-a68be2976518"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e9fa7d3-f9a3-4035-93cd-556ff9f83e61"
+ ],
+ "x-ms-arm-service-request-id": [
+ "5f7f9596-2bed-4f07-a3f2-83181e26be1f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11960"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053203Z:1e9fa7d3-f9a3-4035-93cd-556ff9f83e61"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:32:03 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/operations/885662bc-7997-443a-8e54-50ad96204a12?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg4NTY2MmJjLTc5OTctNDQzYS04ZTU0LTUwYWQ5NjIwNGExMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "06e2947a-b843-4263-8c61-bd9aa4cf2a9e"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba26cb4f-e83c-4ecf-8f9d-9f90cf808ab5"
+ ],
+ "x-ms-arm-service-request-id": [
+ "e08c81d0-fb9a-488a-bfc0-e42422d0a85c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11959"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053214Z:ba26cb4f-e83c-4ecf-8f9d-9f90cf808ab5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:32:14 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/networkVirtualAppliances/ps4399?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlR3JvdXBzL3BzNzE3My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1ZpcnR1YWxBcHBsaWFuY2VzL3BzNDM5OT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "db4390ad-1a09-4892-a65c-eb7442459c88"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "5f390410-0e6d-4476-9e47-f3d34d99ecfd"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f390410-0e6d-4476-9e47-f3d34d99ecfd"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053216Z:5f390410-0e6d-4476-9e47-f3d34d99ecfd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:32:15 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "227"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkVirtualAppliances/ps4399' under resource group 'ps7173' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/networkVirtualAppliances/ps4399?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlR3JvdXBzL3BzNzE3My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1ZpcnR1YWxBcHBsaWFuY2VzL3BzNDM5OT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11811"
+ ],
+ "x-ms-request-id": [
+ "ff9440fb-19da-4a30-982e-0fddb9880c74"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff9440fb-19da-4a30-982e-0fddb9880c74"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054847Z:ff9440fb-19da-4a30-982e-0fddb9880c74"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:48:47 GMT"
+ ],
+ "Content-Length": [
+ "1593"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"nvaSku\": {\r\n \"vendor\": \"barracuda sdwan release\",\r\n \"bundledScaleUnit\": \"1\",\r\n \"marketPlaceVersion\": \"latest\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualHubs/ps6483\"\r\n },\r\n \"virtualApplianceAsn\": 1270,\r\n \"bootStrapConfigurationBlobs\": [],\r\n \"cloudInitConfigurationBlobs\": [],\r\n \"cloudInitConfiguration\": \"echo hi\",\r\n \"virtualApplianceNics\": [\r\n {\r\n \"name\": \"privatenicipconfig\",\r\n \"publicIpAddress\": \"\",\r\n \"privateIpAddress\": \"10.0.96.4\",\r\n \"instanceName\": \"ps4399_0\"\r\n },\r\n {\r\n \"name\": \"publicnicipconfig\",\r\n \"publicIpAddress\": \"40.123.29.129\",\r\n \"privateIpAddress\": \"10.0.0.4\",\r\n \"instanceName\": \"ps4399_0\"\r\n },\r\n {\r\n \"name\": \"privatenicipconfig\",\r\n \"publicIpAddress\": \"\",\r\n \"privateIpAddress\": \"10.0.96.5\",\r\n \"instanceName\": \"ps4399_1\"\r\n },\r\n {\r\n \"name\": \"publicnicipconfig\",\r\n \"publicIpAddress\": \"40.123.29.133\",\r\n \"privateIpAddress\": \"10.0.0.5\",\r\n \"instanceName\": \"ps4399_1\"\r\n }\r\n ],\r\n \"virtualApplianceSites\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/networkVirtualAppliances/ps4399\",\r\n \"name\": \"ps4399\",\r\n \"type\": \"Microsoft.Network/NetworkVirtualAppliances\",\r\n \"etag\": \"a9f68dcb-0a0d-41a6-a629-08e58f8d8637\",\r\n \"location\": \"eastus2\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/networkVirtualAppliances/ps4399?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlR3JvdXBzL3BzNzE3My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1ZpcnR1YWxBcHBsaWFuY2VzL3BzNDM5OT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "25f9048b-661e-46cb-9eea-e3e34ac9f214"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11810"
+ ],
+ "x-ms-request-id": [
+ "f74f1200-877b-462a-b51e-46e1e3828cc6"
+ ],
+ "x-ms-correlation-request-id": [
+ "f74f1200-877b-462a-b51e-46e1e3828cc6"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054847Z:f74f1200-877b-462a-b51e-46e1e3828cc6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:48:47 GMT"
+ ],
+ "Content-Length": [
+ "1593"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"nvaSku\": {\r\n \"vendor\": \"barracuda sdwan release\",\r\n \"bundledScaleUnit\": \"1\",\r\n \"marketPlaceVersion\": \"latest\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualHubs/ps6483\"\r\n },\r\n \"virtualApplianceAsn\": 1270,\r\n \"bootStrapConfigurationBlobs\": [],\r\n \"cloudInitConfigurationBlobs\": [],\r\n \"cloudInitConfiguration\": \"echo hi\",\r\n \"virtualApplianceNics\": [\r\n {\r\n \"name\": \"privatenicipconfig\",\r\n \"publicIpAddress\": \"\",\r\n \"privateIpAddress\": \"10.0.96.4\",\r\n \"instanceName\": \"ps4399_0\"\r\n },\r\n {\r\n \"name\": \"publicnicipconfig\",\r\n \"publicIpAddress\": \"40.123.29.129\",\r\n \"privateIpAddress\": \"10.0.0.4\",\r\n \"instanceName\": \"ps4399_0\"\r\n },\r\n {\r\n \"name\": \"privatenicipconfig\",\r\n \"publicIpAddress\": \"\",\r\n \"privateIpAddress\": \"10.0.96.5\",\r\n \"instanceName\": \"ps4399_1\"\r\n },\r\n {\r\n \"name\": \"publicnicipconfig\",\r\n \"publicIpAddress\": \"40.123.29.133\",\r\n \"privateIpAddress\": \"10.0.0.5\",\r\n \"instanceName\": \"ps4399_1\"\r\n }\r\n ],\r\n \"virtualApplianceSites\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/networkVirtualAppliances/ps4399\",\r\n \"name\": \"ps4399\",\r\n \"type\": \"Microsoft.Network/NetworkVirtualAppliances\",\r\n \"etag\": \"a9f68dcb-0a0d-41a6-a629-08e58f8d8637\",\r\n \"location\": \"eastus2\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/networkVirtualAppliances/ps4399?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlR3JvdXBzL3BzNzE3My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1ZpcnR1YWxBcHBsaWFuY2VzL3BzNDM5OT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b2956793-f2af-4354-9d62-e00a6de84f2a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11963"
+ ],
+ "x-ms-request-id": [
+ "7594015d-4e4a-40c2-a900-6ffd701428af"
+ ],
+ "x-ms-correlation-request-id": [
+ "7594015d-4e4a-40c2-a900-6ffd701428af"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054849Z:7594015d-4e4a-40c2-a900-6ffd701428af"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:48:48 GMT"
+ ],
+ "Content-Length": [
+ "1593"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"nvaSku\": {\r\n \"vendor\": \"barracuda sdwan release\",\r\n \"bundledScaleUnit\": \"1\",\r\n \"marketPlaceVersion\": \"latest\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualHubs/ps6483\"\r\n },\r\n \"virtualApplianceAsn\": 1270,\r\n \"bootStrapConfigurationBlobs\": [],\r\n \"cloudInitConfigurationBlobs\": [],\r\n \"cloudInitConfiguration\": \"echo hi\",\r\n \"virtualApplianceNics\": [\r\n {\r\n \"name\": \"privatenicipconfig\",\r\n \"publicIpAddress\": \"\",\r\n \"privateIpAddress\": \"10.0.96.4\",\r\n \"instanceName\": \"ps4399_0\"\r\n },\r\n {\r\n \"name\": \"publicnicipconfig\",\r\n \"publicIpAddress\": \"40.123.29.129\",\r\n \"privateIpAddress\": \"10.0.0.4\",\r\n \"instanceName\": \"ps4399_0\"\r\n },\r\n {\r\n \"name\": \"privatenicipconfig\",\r\n \"publicIpAddress\": \"\",\r\n \"privateIpAddress\": \"10.0.96.5\",\r\n \"instanceName\": \"ps4399_1\"\r\n },\r\n {\r\n \"name\": \"publicnicipconfig\",\r\n \"publicIpAddress\": \"40.123.29.133\",\r\n \"privateIpAddress\": \"10.0.0.5\",\r\n \"instanceName\": \"ps4399_1\"\r\n }\r\n ],\r\n \"virtualApplianceSites\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/networkVirtualAppliances/ps4399\",\r\n \"name\": \"ps4399\",\r\n \"type\": \"Microsoft.Network/NetworkVirtualAppliances\",\r\n \"etag\": \"a9f68dcb-0a0d-41a6-a629-08e58f8d8637\",\r\n \"location\": \"eastus2\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/networkVirtualAppliances/ps4399?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlR3JvdXBzL3BzNzE3My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1ZpcnR1YWxBcHBsaWFuY2VzL3BzNDM5OT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"nvaSku\": {\r\n \"vendor\": \"barracuda sdwan release\",\r\n \"bundledScaleUnit\": \"1\",\r\n \"marketPlaceVersion\": \"latest\"\r\n },\r\n \"bootStrapConfigurationBlobs\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualHubs/ps6483\"\r\n },\r\n \"cloudInitConfigurationBlobs\": [],\r\n \"cloudInitConfiguration\": \"echo hi\",\r\n \"virtualApplianceAsn\": 1270\r\n },\r\n \"location\": \"eastus2\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8022850f-866e-47cb-89cf-a37f0735a38a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "513"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9"
+ ],
+ "x-ms-correlation-request-id": [
+ "1327037f-2152-46b6-b438-228c5f777506"
+ ],
+ "Azure-AsyncOperation": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053219Z:1327037f-2152-46b6-b438-228c5f777506"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:32:19 GMT"
+ ],
+ "Content-Length": [
+ "860"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"nvaSku\": {\r\n \"vendor\": \"barracuda sdwan release\",\r\n \"bundledScaleUnit\": \"1\",\r\n \"marketPlaceVersion\": \"latest\"\r\n },\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/virtualHubs/ps6483\"\r\n },\r\n \"virtualApplianceAsn\": 1270,\r\n \"bootStrapConfigurationBlobs\": [],\r\n \"cloudInitConfigurationBlobs\": [],\r\n \"cloudInitConfiguration\": \"echo hi\",\r\n \"virtualApplianceSites\": [],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/networkVirtualAppliances/ps4399\",\r\n \"name\": \"ps4399\",\r\n \"type\": \"Microsoft.Network/NetworkVirtualAppliances\",\r\n \"etag\": \"a9f68dcb-0a0d-41a6-a629-08e58f8d8637\",\r\n \"location\": \"eastus2\"\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "32a80303-bace-4c07-98d4-a2f43b4dce23"
+ ],
+ "x-ms-correlation-request-id": [
+ "9597cbcb-1f76-4136-9762-a97288372abb"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11902"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053230Z:9597cbcb-1f76-4136-9762-a97288372abb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:32:30 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "9d360766-42f3-4db7-bb92-f734decba492"
+ ],
+ "x-ms-correlation-request-id": [
+ "3533fadd-d819-4b91-b6a5-09e89ab98eb6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11901"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053240Z:3533fadd-d819-4b91-b6a5-09e89ab98eb6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:32:40 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f8ee665e-9b20-46d6-ae9b-6c714d866035"
+ ],
+ "x-ms-correlation-request-id": [
+ "c53cebdc-546c-4a3e-a193-8e6e8a83a449"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11900"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053251Z:c53cebdc-546c-4a3e-a193-8e6e8a83a449"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:32:51 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "be325ae1-ba3b-44e5-a0b9-66b9636d5ab8"
+ ],
+ "x-ms-correlation-request-id": [
+ "3cf48709-75aa-4e7a-a396-adcbc015fc5f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11899"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053301Z:3cf48709-75aa-4e7a-a396-adcbc015fc5f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:33:01 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "2566a565-a889-4c09-9cd4-a69133affc63"
+ ],
+ "x-ms-correlation-request-id": [
+ "a1cea0fd-43da-424a-b056-1d38f0c786eb"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11898"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053311Z:a1cea0fd-43da-424a-b056-1d38f0c786eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:33:11 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ca855285-0a96-4c66-ad65-a6ccc11e6d45"
+ ],
+ "x-ms-correlation-request-id": [
+ "cc58b66b-5875-4250-9fe7-8b429c72fe7b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11897"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053322Z:cc58b66b-5875-4250-9fe7-8b429c72fe7b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:33:21 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "31650e94-3cda-4ca8-8c79-e657a95c9e93"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed96cd02-6bd6-4a69-88dd-102177350f4d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11896"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053332Z:ed96cd02-6bd6-4a69-88dd-102177350f4d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:33:32 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3b34f759-249a-4d9f-9fdb-0d319c8002e2"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a08b597-9bf4-4eb8-a3dd-3829b9c1b349"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11895"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053344Z:0a08b597-9bf4-4eb8-a3dd-3829b9c1b349"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:33:44 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "59817a3c-28f1-4593-8718-dff1afbde457"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c0cd83d-533b-4a4e-8fbe-c913ba2b4103"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11894"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053354Z:5c0cd83d-533b-4a4e-8fbe-c913ba2b4103"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:33:54 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "9ea8846b-9b7e-4039-a3b3-a95f3925f7c9"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b595e30-50e1-4500-bab4-318e1d9dc2f4"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11893"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053405Z:4b595e30-50e1-4500-bab4-318e1d9dc2f4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:34:04 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "40456f99-77dc-488d-8b10-fc6f8dbc29c7"
+ ],
+ "x-ms-correlation-request-id": [
+ "d9766e59-0f03-463e-a835-74e8d35d0955"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11892"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053415Z:d9766e59-0f03-463e-a835-74e8d35d0955"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:34:14 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "6f39f5a6-4ed5-479f-9e35-346038b4efca"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec6c5d8d-84eb-4cc0-a658-5f4f5d544ee7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11891"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053425Z:ec6c5d8d-84eb-4cc0-a658-5f4f5d544ee7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:34:25 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "cc9e3b49-b170-465a-b81f-2ad09d0f80b6"
+ ],
+ "x-ms-correlation-request-id": [
+ "9caf60be-2f09-454d-b354-07b25b1d43ac"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11890"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053436Z:9caf60be-2f09-454d-b354-07b25b1d43ac"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:34:36 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "627394a1-14b6-4944-a295-c9a735c6946f"
+ ],
+ "x-ms-correlation-request-id": [
+ "655559c3-40f2-45df-b6ec-ed1c2516b762"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11889"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053446Z:655559c3-40f2-45df-b6ec-ed1c2516b762"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:34:45 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "8c6ac8c2-25ef-4e72-9ebc-4ec6eaea12f6"
+ ],
+ "x-ms-correlation-request-id": [
+ "1cb257aa-9155-48f3-8073-ce53c4854f48"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11888"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053456Z:1cb257aa-9155-48f3-8073-ce53c4854f48"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:34:56 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "4bff7e96-915d-483f-9951-fccbf75ffb88"
+ ],
+ "x-ms-correlation-request-id": [
+ "32017b1a-52bf-47ed-84a3-35e9714205c0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11887"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053507Z:32017b1a-52bf-47ed-84a3-35e9714205c0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:35:07 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "4e7d6254-a658-4976-9404-6893d9cdbc82"
+ ],
+ "x-ms-correlation-request-id": [
+ "8bb5471a-a585-4fd8-b3a6-abfa971b955b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11886"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053517Z:8bb5471a-a585-4fd8-b3a6-abfa971b955b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:35:17 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "59dbe392-f1a3-4d64-925a-1302ad52f5ea"
+ ],
+ "x-ms-correlation-request-id": [
+ "951535db-4ce2-44f8-a62a-ed5ad17c354d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11885"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053527Z:951535db-4ce2-44f8-a62a-ed5ad17c354d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:35:27 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d573ea8a-0e95-434d-8a83-ac10ae01e3e8"
+ ],
+ "x-ms-correlation-request-id": [
+ "7955f795-939f-4d41-b7e2-c2be2d99ee44"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11884"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053538Z:7955f795-939f-4d41-b7e2-c2be2d99ee44"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:35:37 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "47b3e849-fb8c-485a-ae4c-33b28ea3a7d6"
+ ],
+ "x-ms-correlation-request-id": [
+ "d149f02b-fc7c-4d08-a5bb-f5cef3762811"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11883"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053548Z:d149f02b-fc7c-4d08-a5bb-f5cef3762811"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:35:48 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "4a7d77a1-5bb2-475f-a6fd-5b781d8bf20e"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f8e42e4-0b6c-47cf-b532-c2df5b1ae382"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11882"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053559Z:4f8e42e4-0b6c-47cf-b532-c2df5b1ae382"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:35:58 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "877d815a-050f-446f-ab45-f9790adaa6dc"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b576392-7c0f-45dd-b2eb-03ba7983623b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11881"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053609Z:7b576392-7c0f-45dd-b2eb-03ba7983623b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:36:09 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c26c61b5-e3bb-4262-90d2-66df0da24878"
+ ],
+ "x-ms-correlation-request-id": [
+ "cff24b5b-bd84-4819-9466-30c97b717c80"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11880"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053620Z:cff24b5b-bd84-4819-9466-30c97b717c80"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:36:19 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "341be9bd-6081-427f-b960-77f088a40d85"
+ ],
+ "x-ms-correlation-request-id": [
+ "74cf4579-634d-49aa-8c1e-3f39928da6ba"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11879"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053630Z:74cf4579-634d-49aa-8c1e-3f39928da6ba"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:36:29 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0087e809-e03f-444f-a58c-3642c143aec8"
+ ],
+ "x-ms-correlation-request-id": [
+ "47378df2-f58c-40f2-93d2-5b0f70ccd3a3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11878"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053640Z:47378df2-f58c-40f2-93d2-5b0f70ccd3a3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:36:40 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "e27bfa3b-c976-48c5-8286-1a262719e20c"
+ ],
+ "x-ms-correlation-request-id": [
+ "ace319f4-a2fa-4ac5-95fb-d7dfb2ff33b7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11877"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053651Z:ace319f4-a2fa-4ac5-95fb-d7dfb2ff33b7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:36:51 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0be35cbc-a0e0-4c3a-a3bc-3e49ed5ffe58"
+ ],
+ "x-ms-correlation-request-id": [
+ "0b28bfe2-6650-4ee0-8055-7ab86b42fd71"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11876"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053701Z:0b28bfe2-6650-4ee0-8055-7ab86b42fd71"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:37:01 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "01eaf49d-cbd2-4a1c-92e4-8176de5df944"
+ ],
+ "x-ms-correlation-request-id": [
+ "c0adb3ec-2d16-4250-920f-71663899958c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11875"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053712Z:c0adb3ec-2d16-4250-920f-71663899958c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:37:12 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f43b3b82-1e6b-4d1a-85d6-e5347d5473ad"
+ ],
+ "x-ms-correlation-request-id": [
+ "8dd4110a-db8b-4763-b8e7-694bc0fe606e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11874"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053722Z:8dd4110a-db8b-4763-b8e7-694bc0fe606e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:37:22 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "45df41e0-57ad-4f91-8895-4b3c100dc099"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef936d1b-f1a8-40dc-bf56-a692c7cca693"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11873"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053732Z:ef936d1b-f1a8-40dc-bf56-a692c7cca693"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:37:32 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "1c82eb5a-87da-4494-a5dc-552ffb307892"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0b057d0-50d7-4311-9106-e3ce239245f4"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11872"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053743Z:b0b057d0-50d7-4311-9106-e3ce239245f4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:37:42 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "719a7e3b-3326-4551-b2ed-fa5c496bdff0"
+ ],
+ "x-ms-correlation-request-id": [
+ "e6b5a8ec-7904-47e5-8218-2d5a04691f10"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11871"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053753Z:e6b5a8ec-7904-47e5-8218-2d5a04691f10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:37:52 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c8c94b49-2e24-434c-8c24-55a8b378c469"
+ ],
+ "x-ms-correlation-request-id": [
+ "46586084-c388-4718-b764-c4150d7c7de6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11870"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053803Z:46586084-c388-4718-b764-c4150d7c7de6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:38:03 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "32097de8-b8fc-4307-a31b-b9a7087cb33c"
+ ],
+ "x-ms-correlation-request-id": [
+ "d59b6dae-cfb1-4d44-a08a-6cbb081d0490"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11869"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053814Z:d59b6dae-cfb1-4d44-a08a-6cbb081d0490"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:38:14 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ecd82b33-ddcf-463d-9af1-647ab63f5c6d"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a94fc2f-be63-430f-b4de-4428f8d8dd14"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11868"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053824Z:3a94fc2f-be63-430f-b4de-4428f8d8dd14"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:38:23 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f28623e5-00c0-43b5-866a-7c2f547ccc45"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e4c229e-ee18-44e1-bea6-b677b912061f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11867"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053835Z:1e4c229e-ee18-44e1-bea6-b677b912061f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:38:34 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "e1c22a1a-9f50-4bd6-b1f6-e4b8f45d8b58"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee6b4a52-f90c-40b0-8876-36507fe2b1cf"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11866"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053845Z:ee6b4a52-f90c-40b0-8876-36507fe2b1cf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:38:45 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "26b2a8d5-4378-4b36-92da-a5c3d3844643"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7941a0b-160e-41ff-965a-f484ad751502"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11865"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053855Z:d7941a0b-160e-41ff-965a-f484ad751502"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:38:55 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "8ab3bc66-055a-4646-ab35-8878e958a973"
+ ],
+ "x-ms-correlation-request-id": [
+ "98337c08-7bb5-423b-920f-30aa47598248"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11864"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053906Z:98337c08-7bb5-423b-920f-30aa47598248"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:39:05 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "5c3ab7bf-7f58-4dee-bd5d-e0dc471278a8"
+ ],
+ "x-ms-correlation-request-id": [
+ "9bfd8101-4bc5-49d3-b9bf-13ffd008f83d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11863"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053916Z:9bfd8101-4bc5-49d3-b9bf-13ffd008f83d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:39:16 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f67cbf04-47c9-4dbb-8182-86228653299b"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d8137f1-66f5-4d3c-bfba-56a080e5c01d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11862"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053926Z:9d8137f1-66f5-4d3c-bfba-56a080e5c01d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:39:26 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0601d8c5-eada-4275-b6a5-491d10283fa0"
+ ],
+ "x-ms-correlation-request-id": [
+ "e611a042-ef80-4f40-9303-d8af851ef03a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11861"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053937Z:e611a042-ef80-4f40-9303-d8af851ef03a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:39:36 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "6a219644-abce-4bc8-9527-e2b1489cf403"
+ ],
+ "x-ms-correlation-request-id": [
+ "02f7a15d-fb31-46bb-b055-be75c779ef37"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11860"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053948Z:02f7a15d-fb31-46bb-b055-be75c779ef37"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:39:47 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "79aa2ad2-2b6a-488f-b54a-db1c59abcf15"
+ ],
+ "x-ms-correlation-request-id": [
+ "907caa5d-dc14-401a-b3aa-ea211c735d20"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11859"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T053958Z:907caa5d-dc14-401a-b3aa-ea211c735d20"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:39:58 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ca1faefb-539a-4344-b36d-ad132a5dcdd9"
+ ],
+ "x-ms-correlation-request-id": [
+ "aba05957-e62d-43f9-8dca-6f80a678766d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11858"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054008Z:aba05957-e62d-43f9-8dca-6f80a678766d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:40:08 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3186e8d4-149c-418e-bf1a-cf630b8e9278"
+ ],
+ "x-ms-correlation-request-id": [
+ "79d8d76a-a9f7-49ce-b68b-117b5ce08fff"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11857"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054019Z:79d8d76a-a9f7-49ce-b68b-117b5ce08fff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:40:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ddf6415b-9553-404a-9421-75a11d9bb78a"
+ ],
+ "x-ms-correlation-request-id": [
+ "32120e15-6331-41e3-aaa3-b545c2d2d722"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11856"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054029Z:32120e15-6331-41e3-aaa3-b545c2d2d722"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:40:28 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "2382c9c4-dc0f-4930-8525-99229d7fd63f"
+ ],
+ "x-ms-correlation-request-id": [
+ "68d49d30-2788-469b-90b9-8c64ed487e96"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11855"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054039Z:68d49d30-2788-469b-90b9-8c64ed487e96"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:40:39 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "787db203-6bf9-4258-bbf2-8e9587fe76e4"
+ ],
+ "x-ms-correlation-request-id": [
+ "af0ad635-ce8e-4b5c-b987-86752dd337e4"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11854"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054050Z:af0ad635-ce8e-4b5c-b987-86752dd337e4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:40:49 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "99e7c8cf-bf7d-4c52-961c-5727d65523f6"
+ ],
+ "x-ms-correlation-request-id": [
+ "85eaeb22-9b92-43ec-9fd5-4a60da2f82a1"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11853"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054100Z:85eaeb22-9b92-43ec-9fd5-4a60da2f82a1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:41:00 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "7ce7568a-9387-4a71-b1db-e947627e0922"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee5e51c3-495d-4209-8900-6bda0a898d00"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11852"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054111Z:ee5e51c3-495d-4209-8900-6bda0a898d00"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:41:11 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f8dc8d2c-f0a2-40a6-b22e-f81302e3ffba"
+ ],
+ "x-ms-correlation-request-id": [
+ "a9a58e5a-2260-45b7-b72e-a82577be5510"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11851"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054121Z:a9a58e5a-2260-45b7-b72e-a82577be5510"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:41:21 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "4fa4b200-e3f7-42ee-9332-9c0d6b253c5f"
+ ],
+ "x-ms-correlation-request-id": [
+ "f10c9a7c-e1ca-4bfd-a68d-d3dd53cbbb98"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11850"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054131Z:f10c9a7c-e1ca-4bfd-a68d-d3dd53cbbb98"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:41:31 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "cd5c9ceb-77df-494c-aacb-efb7bfd26a8a"
+ ],
+ "x-ms-correlation-request-id": [
+ "8a9c1479-afc3-4a52-805f-69e25275b8f3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11849"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054142Z:8a9c1479-afc3-4a52-805f-69e25275b8f3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:41:42 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "cce35b89-adcd-486f-8689-890ae379b670"
+ ],
+ "x-ms-correlation-request-id": [
+ "be37dfe0-eb3f-4a8b-9e58-7f6ea41bbcbd"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11848"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054152Z:be37dfe0-eb3f-4a8b-9e58-7f6ea41bbcbd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:41:52 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "03fd1207-1303-42b4-b94f-7d625b3fbd3b"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f65f01c-82e6-47f4-8edb-ed5316242af4"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11847"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054202Z:4f65f01c-82e6-47f4-8edb-ed5316242af4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:42:02 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "7993de72-4ff7-4a7a-b70c-23c158da63e8"
+ ],
+ "x-ms-correlation-request-id": [
+ "61e4a011-2b87-40d9-83be-2a3ae316159d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11846"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054213Z:61e4a011-2b87-40d9-83be-2a3ae316159d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:42:13 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ea212a59-09db-44a4-a044-672f5888ba65"
+ ],
+ "x-ms-correlation-request-id": [
+ "69b1c9f3-a845-4a70-9fd7-c9d0e4d4584b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11845"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054223Z:69b1c9f3-a845-4a70-9fd7-c9d0e4d4584b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:42:22 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b5aa709c-651e-4b4c-9407-1817cc32e205"
+ ],
+ "x-ms-correlation-request-id": [
+ "8601d0ca-9510-409e-bca4-086851899286"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11844"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054233Z:8601d0ca-9510-409e-bca4-086851899286"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:42:32 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0242c6d7-d6b5-42f6-b7f0-0cef6937a1a4"
+ ],
+ "x-ms-correlation-request-id": [
+ "23423c1b-9d46-487c-8877-ea1d79ea2fd8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11843"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054244Z:23423c1b-9d46-487c-8877-ea1d79ea2fd8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:42:44 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "2ce215e9-50cc-4f1a-8a03-50c1e59a571a"
+ ],
+ "x-ms-correlation-request-id": [
+ "82e6c5fc-7650-488f-9bb6-2271569bb3b5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11842"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054254Z:82e6c5fc-7650-488f-9bb6-2271569bb3b5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:42:53 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "e8c1829f-ea67-416c-b39c-e7f6b144f995"
+ ],
+ "x-ms-correlation-request-id": [
+ "2e610ad2-2ff6-43d8-a77f-99d5f5dd41c6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11841"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054304Z:2e610ad2-2ff6-43d8-a77f-99d5f5dd41c6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:43:04 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "7e54674b-49e9-4004-8b4f-fd17ae82667f"
+ ],
+ "x-ms-correlation-request-id": [
+ "34bc7f67-df65-4bad-9ba7-edaabaa478bf"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11840"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054315Z:34bc7f67-df65-4bad-9ba7-edaabaa478bf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:43:15 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0e1c8bbd-0617-42bd-a5c5-8e21d1ab31ad"
+ ],
+ "x-ms-correlation-request-id": [
+ "9732c66a-86bb-485d-8ce3-3dec27c0ed72"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11839"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054325Z:9732c66a-86bb-485d-8ce3-3dec27c0ed72"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:43:25 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0888dd5f-5439-438f-9570-e0ee99d1d0e0"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0ab7a66-82c6-4e1f-93e6-353a5a03dad7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11838"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054335Z:a0ab7a66-82c6-4e1f-93e6-353a5a03dad7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:43:35 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "78b47ef7-72b4-487e-925c-25b130e05910"
+ ],
+ "x-ms-correlation-request-id": [
+ "521edd0a-d3fa-4dc1-a0bf-7b10deeb5f95"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11837"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054346Z:521edd0a-d3fa-4dc1-a0bf-7b10deeb5f95"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:43:46 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "e109b576-b1b8-42a4-bcef-e5079263f59c"
+ ],
+ "x-ms-correlation-request-id": [
+ "191c0feb-8d7c-41f4-9fe1-7e554fb1836b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11836"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054356Z:191c0feb-8d7c-41f4-9fe1-7e554fb1836b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:43:56 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "2eaf9e31-d4e4-4cf5-be7a-ebc58b8bfb3e"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed84a0b3-5190-437c-8de3-bcd6e33ff120"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11835"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054406Z:ed84a0b3-5190-437c-8de3-bcd6e33ff120"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:44:06 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "e65d1f8f-2d73-4ecc-99b9-a808403eba8c"
+ ],
+ "x-ms-correlation-request-id": [
+ "919cc392-4bc1-44d1-b951-bc582f850bee"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11834"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054417Z:919cc392-4bc1-44d1-b951-bc582f850bee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:44:16 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "bbc87ee8-31f7-487e-bf00-f6b0e208e3f0"
+ ],
+ "x-ms-correlation-request-id": [
+ "6072bed7-2f75-490e-9626-22353337dec2"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11833"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054427Z:6072bed7-2f75-490e-9626-22353337dec2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:44:27 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "116a4220-c4f7-4c49-a608-bea47cd7bbae"
+ ],
+ "x-ms-correlation-request-id": [
+ "d068aefd-5c1c-4906-82ae-4da895a3b0ac"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11832"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054437Z:d068aefd-5c1c-4906-82ae-4da895a3b0ac"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:44:36 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "eb3ff1b5-f55a-46ba-8ce8-ead82ff5db02"
+ ],
+ "x-ms-correlation-request-id": [
+ "784ad67d-ece0-46ac-bc77-7d963b185c8f"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11831"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054448Z:784ad67d-ece0-46ac-bc77-7d963b185c8f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:44:48 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "07375a98-ffb8-4d0c-9d28-2297419b5de5"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b044191-ce0f-4333-840d-b6b1dac42105"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11830"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054458Z:1b044191-ce0f-4333-840d-b6b1dac42105"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:44:58 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "1ed98baa-0b47-480e-a81e-1a99a8a09ad9"
+ ],
+ "x-ms-correlation-request-id": [
+ "af0f261f-719e-476c-9fc5-058022590454"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11833"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054509Z:af0f261f-719e-476c-9fc5-058022590454"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:45:08 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "289be2c3-4591-4a66-8159-69603caa0984"
+ ],
+ "x-ms-correlation-request-id": [
+ "8011a930-c54c-4c6d-8283-033153c10e6a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11832"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054519Z:8011a930-c54c-4c6d-8283-033153c10e6a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:45:19 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "342d200d-b65c-4d0b-821c-44e1145c556e"
+ ],
+ "x-ms-correlation-request-id": [
+ "39357f34-a866-4317-ae96-3adf0097bdb4"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11831"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054529Z:39357f34-a866-4317-ae96-3adf0097bdb4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:45:29 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "99a1153f-8188-4fc6-b570-42518e82d120"
+ ],
+ "x-ms-correlation-request-id": [
+ "8f87f2dd-ee6b-4a50-99d9-67ee7a620278"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11830"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054540Z:8f87f2dd-ee6b-4a50-99d9-67ee7a620278"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:45:40 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "4469d1d6-72aa-478d-afad-29cd4f46ddd2"
+ ],
+ "x-ms-correlation-request-id": [
+ "6304d34b-f3fc-43b4-8a64-a243e87fcfd0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11829"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054550Z:6304d34b-f3fc-43b4-8a64-a243e87fcfd0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:45:50 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "e264d3d2-8f7b-4bc4-b994-427690e95d08"
+ ],
+ "x-ms-correlation-request-id": [
+ "71173ce8-6805-4fa2-902f-cc1d50c981c2"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11828"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054601Z:71173ce8-6805-4fa2-902f-cc1d50c981c2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:46:01 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "8ba405d3-0f4e-446b-8892-34fabf91fe4d"
+ ],
+ "x-ms-correlation-request-id": [
+ "83427727-1804-4159-bcec-afbd64312f6e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11827"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054611Z:83427727-1804-4159-bcec-afbd64312f6e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:46:11 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b27740a7-dbb5-4e4f-a5c7-f11d8ca4cf60"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe63c670-c96a-4648-958c-7bc5d5e929b5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11826"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054621Z:fe63c670-c96a-4648-958c-7bc5d5e929b5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:46:21 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "2e840316-7351-424b-b381-9f820a6c0ade"
+ ],
+ "x-ms-correlation-request-id": [
+ "7878d8ff-3b6a-4557-ad5f-35ac6bc39b8a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11825"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054632Z:7878d8ff-3b6a-4557-ad5f-35ac6bc39b8a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:46:32 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3692c4c7-e0b6-4691-a97a-20245cf06a77"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e74363b-e45d-439f-a685-e575a6e7011b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11824"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054642Z:9e74363b-e45d-439f-a685-e575a6e7011b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:46:42 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f93da26e-1a63-4d6b-b787-fa986e253c9c"
+ ],
+ "x-ms-correlation-request-id": [
+ "6a946cfe-7b30-44d4-a21d-a3f8d4576d41"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11823"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054652Z:6a946cfe-7b30-44d4-a21d-a3f8d4576d41"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:46:52 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "1132b136-29e8-47e1-b5c9-1d3acfe503ae"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb963240-a647-40e1-afe0-2062fc21302c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11822"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054703Z:eb963240-a647-40e1-afe0-2062fc21302c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:47:02 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "19f28aa3-acc7-4014-9a1c-d3487c179464"
+ ],
+ "x-ms-correlation-request-id": [
+ "229f2186-4ec1-47d1-923d-52bd6de940e5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11821"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054713Z:229f2186-4ec1-47d1-923d-52bd6de940e5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:47:13 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3a420327-87b6-4b55-a913-ffa78e1f2afc"
+ ],
+ "x-ms-correlation-request-id": [
+ "c16926af-084c-4ee4-8614-d0605b4ee53b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11820"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054723Z:c16926af-084c-4ee4-8614-d0605b4ee53b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:47:23 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f9bb60ff-fc08-4825-9e2b-9bba0e68e745"
+ ],
+ "x-ms-correlation-request-id": [
+ "b8a62814-7a3e-4884-ab6d-22fa9a1b09c9"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11819"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054734Z:b8a62814-7a3e-4884-ab6d-22fa9a1b09c9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:47:33 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b07b592b-a127-451f-8a5f-7b8fcac711cd"
+ ],
+ "x-ms-correlation-request-id": [
+ "9df0e6b8-7bb2-4bf8-9dc9-2f3961a136ee"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11818"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054744Z:9df0e6b8-7bb2-4bf8-9dc9-2f3961a136ee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:47:44 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "9006e71a-0d2b-40f8-9320-db31a743d36b"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef7beea5-a2f6-4086-8773-25ba556cd469"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11817"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054754Z:ef7beea5-a2f6-4086-8773-25ba556cd469"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:47:54 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "2a2b0e6e-df7d-41ec-921d-56a00cebfac1"
+ ],
+ "x-ms-correlation-request-id": [
+ "df28ff32-f12d-4878-a775-03e8f8e61d09"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11816"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054805Z:df28ff32-f12d-4878-a775-03e8f8e61d09"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:48:05 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "2612b76a-5ba7-4e6a-bbc6-b0ac9e6aac33"
+ ],
+ "x-ms-correlation-request-id": [
+ "d3c1902c-fe82-4269-b68c-7758e56de1e5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11815"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054815Z:d3c1902c-fe82-4269-b68c-7758e56de1e5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:48:15 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "889277e0-5d2a-411d-a3e2-bad2aaf0d6d7"
+ ],
+ "x-ms-correlation-request-id": [
+ "23446515-57b6-4e5f-aa3c-11b63f5d6fd6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11814"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054825Z:23446515-57b6-4e5f-aa3c-11b63f5d6fd6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:48:25 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "8525d4a6-1e4b-42de-8005-c900913c2f7e"
+ ],
+ "x-ms-correlation-request-id": [
+ "b7a0dd96-c5eb-4210-be6b-32663185c023"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11813"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054836Z:b7a0dd96-c5eb-4210-be6b-32663185c023"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:48:36 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/1e0b84e3-14eb-4b6e-bf14-3dfadb66a8c9?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzFlMGI4NGUzLTE0ZWItNGI2ZS1iZjE0LTNkZmFkYjY2YThjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "52c6e5b1-3a64-4158-bbbc-10d8884cee02"
+ ],
+ "x-ms-correlation-request-id": [
+ "cbaf7387-9fde-49bb-977b-ef909664a25e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11812"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054846Z:cbaf7387-9fde-49bb-977b-ef909664a25e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:48:45 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourceGroups/ps7173/providers/Microsoft.Network/networkVirtualAppliances/ps4399?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlR3JvdXBzL3BzNzE3My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1ZpcnR1YWxBcHBsaWFuY2VzL3BzNDM5OT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "959858e2-6d3c-42cd-a52a-20935c274231"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperationResults/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "24df2e0c-dc45-4a3b-84ec-001c4cface41"
+ ],
+ "x-ms-correlation-request-id": [
+ "957d6e59-0461-42c2-8f12-7401ca901d7f"
+ ],
+ "Azure-AsyncOperation": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054853Z:957d6e59-0461-42c2-8f12-7401ca901d7f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:48:53 GMT"
+ ],
+ "Content-Length": [
+ "4"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "null",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "7ac6f3cc-0a8e-4ae5-9f55-f83a121e04ca"
+ ],
+ "x-ms-correlation-request-id": [
+ "c37efe55-7237-488c-8ebb-b10dff18a78c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11960"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054904Z:c37efe55-7237-488c-8ebb-b10dff18a78c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:49:03 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "33165931-2de4-458e-8af4-7cf3a5da8f6e"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ea8c31b-808a-4dbe-92d7-e382c04b9b86"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11959"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054914Z:5ea8c31b-808a-4dbe-92d7-e382c04b9b86"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:49:13 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "7bf9289d-8997-4a58-ac01-f7ece5cbd0d0"
+ ],
+ "x-ms-correlation-request-id": [
+ "c61c1187-db79-4166-a928-a7e8b978f37c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11958"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054925Z:c61c1187-db79-4166-a928-a7e8b978f37c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:49:25 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ac4650d2-abce-4a16-a803-de1d76dbf7c8"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf1b3f4f-16df-430d-b04f-5cf010eae11d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11957"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054935Z:cf1b3f4f-16df-430d-b04f-5cf010eae11d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:49:35 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "537843f8-c3d3-421d-973f-b45562a13122"
+ ],
+ "x-ms-correlation-request-id": [
+ "506bdbc9-6702-42a7-9020-9d290deaceca"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11956"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054945Z:506bdbc9-6702-42a7-9020-9d290deaceca"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:49:45 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "eb020df3-d329-42a5-b8d3-742a1e1f5250"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac0fb370-2425-458b-9696-7ecc7e3d5fa6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11955"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T054956Z:ac0fb370-2425-458b-9696-7ecc7e3d5fa6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:49:55 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "7f4da476-6d15-48e0-a7ba-dafec444a759"
+ ],
+ "x-ms-correlation-request-id": [
+ "79c4b63f-9d07-4dbe-be47-fde8bce3dd1c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11954"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055006Z:79c4b63f-9d07-4dbe-be47-fde8bce3dd1c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:50:05 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f3ee69fc-ef1a-4916-80c1-fd7203866e6b"
+ ],
+ "x-ms-correlation-request-id": [
+ "7bb9d530-4cae-4fae-a527-7e50ff168584"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11953"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055016Z:7bb9d530-4cae-4fae-a527-7e50ff168584"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:50:16 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f6f09eb6-b8e6-433f-b8d7-7a9ba55cfa7a"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac004f60-65c7-40e4-9cee-9bb626c68eb0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11952"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055027Z:ac004f60-65c7-40e4-9cee-9bb626c68eb0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:50:26 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f48aa452-2891-4c7d-8810-a339ecda998d"
+ ],
+ "x-ms-correlation-request-id": [
+ "9844ea0f-a945-43f5-ac66-40a3bca279db"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11951"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055037Z:9844ea0f-a945-43f5-ac66-40a3bca279db"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:50:36 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ef5716f1-dacb-42ab-b692-9276f4b02019"
+ ],
+ "x-ms-correlation-request-id": [
+ "96100b27-4e3f-4c7a-8b47-81e880fb9cc8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11950"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055047Z:96100b27-4e3f-4c7a-8b47-81e880fb9cc8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:50:47 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f8d21b63-ef27-487d-ae67-e55c44da19b4"
+ ],
+ "x-ms-correlation-request-id": [
+ "40583b7d-be6b-45a9-8594-797e5fff0219"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11949"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055058Z:40583b7d-be6b-45a9-8594-797e5fff0219"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:50:57 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "13b301b9-b6b0-4650-bd6e-06052417a540"
+ ],
+ "x-ms-correlation-request-id": [
+ "81576b4a-de67-44d2-9565-078008a75b96"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11948"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055108Z:81576b4a-de67-44d2-9565-078008a75b96"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:51:08 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "7888dbf4-b77f-4336-b5b1-6e57df7380e5"
+ ],
+ "x-ms-correlation-request-id": [
+ "08a6a2ce-0428-4005-b080-3dc6f42c2601"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11947"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055118Z:08a6a2ce-0428-4005-b080-3dc6f42c2601"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:51:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "5ec7ea0e-e433-4d89-8fc8-1ffe5add0cd9"
+ ],
+ "x-ms-correlation-request-id": [
+ "656f1b02-8176-4ccb-ac3c-259ce65f6428"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11946"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055129Z:656f1b02-8176-4ccb-ac3c-259ce65f6428"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:51:28 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3cebcb38-1a7e-4c55-b936-1c8deaa9a0e6"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5a2c9a9-b6aa-4fdf-8ceb-ad92756f968e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11945"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055139Z:e5a2c9a9-b6aa-4fdf-8ceb-ad92756f968e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:51:38 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0eca50a4-28aa-4d7d-8bd5-80af85e93d9e"
+ ],
+ "x-ms-correlation-request-id": [
+ "1031f581-8159-4829-ac33-2dbcddad6a40"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11944"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055149Z:1031f581-8159-4829-ac33-2dbcddad6a40"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:51:49 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "a5d18ca2-8ca9-4cbd-a76c-a40c42783b26"
+ ],
+ "x-ms-correlation-request-id": [
+ "0561fdec-ff69-41c8-ad30-7d59222cfade"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11943"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055200Z:0561fdec-ff69-41c8-ad30-7d59222cfade"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:52:00 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "69c9e4a3-478d-477a-886e-76e69da620e2"
+ ],
+ "x-ms-correlation-request-id": [
+ "90956a3b-26d2-42fb-9119-c5dd13cd40ac"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11942"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055210Z:90956a3b-26d2-42fb-9119-c5dd13cd40ac"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:52:10 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "38762793-b585-41dc-b10d-45bd8c5a9b01"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ab7a0e5-8453-42da-99be-3bf7bba25d54"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11941"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055220Z:5ab7a0e5-8453-42da-99be-3bf7bba25d54"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:52:20 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "04650584-3b01-4c26-a75e-a08366f4802e"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4fc89c0-4ca8-46aa-88fb-1951da559484"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11940"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055231Z:b4fc89c0-4ca8-46aa-88fb-1951da559484"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:52:31 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3ba9c154-9113-435f-a364-43c69af4060a"
+ ],
+ "x-ms-correlation-request-id": [
+ "2eae0599-b368-4601-a7fd-07d0fb029dcf"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11939"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055241Z:2eae0599-b368-4601-a7fd-07d0fb029dcf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:52:41 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "43b1a93a-0ffa-40c9-a291-ddb996dce5fc"
+ ],
+ "x-ms-correlation-request-id": [
+ "9984add9-9704-458e-bfae-494b38f01d36"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11938"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055251Z:9984add9-9704-458e-bfae-494b38f01d36"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:52:51 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d99dc94e-1613-4a76-8c16-7efabd1c398d"
+ ],
+ "x-ms-correlation-request-id": [
+ "56a824ee-bd8e-43d1-8866-e8273172a819"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11937"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055302Z:56a824ee-bd8e-43d1-8866-e8273172a819"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:53:02 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c58d36f3-1435-4b8d-8c47-8b58c539db2d"
+ ],
+ "x-ms-correlation-request-id": [
+ "b530301a-bd83-45a1-8852-76474c86aabb"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055312Z:b530301a-bd83-45a1-8852-76474c86aabb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:53:11 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "1c25248e-294e-4261-a3d1-e113abfff169"
+ ],
+ "x-ms-correlation-request-id": [
+ "91b08335-692d-4884-823c-f07222371ba8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055322Z:91b08335-692d-4884-823c-f07222371ba8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:53:22 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b8b65c9a-2798-4325-a1b0-1584299f49ca"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f84ff6e-ac9c-4518-8f31-5245c27a4a9d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11934"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055333Z:9f84ff6e-ac9c-4518-8f31-5245c27a4a9d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:53:33 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "af909da1-9d2f-4607-ba6c-d59da25ebc43"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4327939-1450-4cf2-95b6-8316b25de9f0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11933"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055343Z:d4327939-1450-4cf2-95b6-8316b25de9f0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:53:42 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "30c1712b-1ff3-462f-9fcf-8b2894495679"
+ ],
+ "x-ms-correlation-request-id": [
+ "bdb43ec6-e709-49e4-a4d5-3461b0e71e3f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11932"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055353Z:bdb43ec6-e709-49e4-a4d5-3461b0e71e3f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:53:53 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "7302325b-da37-4864-ab3f-6319d93d92c0"
+ ],
+ "x-ms-correlation-request-id": [
+ "85476d9c-b7bb-41b6-b7e1-ad3360693a67"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11931"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055404Z:85476d9c-b7bb-41b6-b7e1-ad3360693a67"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:54:04 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "dcc31b12-cd5a-4976-a8a7-3c1955354831"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0784c10-d7c4-4071-a76d-767350533473"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11930"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055414Z:a0784c10-d7c4-4071-a76d-767350533473"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:54:13 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "1e29c54b-f21c-4377-b86b-20861e5eb5e2"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d99ea44-c7eb-4f2d-ad3c-31418f76f10f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11929"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055424Z:9d99ea44-c7eb-4f2d-ad3c-31418f76f10f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:54:24 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "593932af-7ad8-43e0-8590-c89303b1e3ec"
+ ],
+ "x-ms-correlation-request-id": [
+ "58c8c7af-f373-4278-8f15-f1d245bce341"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11928"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055435Z:58c8c7af-f373-4278-8f15-f1d245bce341"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:54:35 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ad50aa8a-d76b-4efc-868b-33d33f483878"
+ ],
+ "x-ms-correlation-request-id": [
+ "787c727c-6f5f-4bfa-9999-814290b96926"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11927"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055445Z:787c727c-6f5f-4bfa-9999-814290b96926"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:54:45 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ec77611e-b5ff-40b2-bdce-1ba123c73d81"
+ ],
+ "x-ms-correlation-request-id": [
+ "0bef2532-81bb-4a03-9565-f2f34901f4fa"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11926"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055455Z:0bef2532-81bb-4a03-9565-f2f34901f4fa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:54:55 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "0bda68b7-82a1-462d-8c3a-e428220a8b7c"
+ ],
+ "x-ms-correlation-request-id": [
+ "4aa4a504-83cf-4ea3-9546-31708e9b57e5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11925"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055506Z:4aa4a504-83cf-4ea3-9546-31708e9b57e5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:55:05 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3da4db9b-009d-4c79-9f3a-30bdf7a262d6"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7316831-75a3-40fc-90eb-cbe015248c1f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11924"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055516Z:c7316831-75a3-40fc-90eb-cbe015248c1f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:55:15 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "860f113f-b820-492f-baec-ffede81483a3"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b78e605-d3a5-48fa-8ce9-d17b9441a95f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11923"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055526Z:5b78e605-d3a5-48fa-8ce9-d17b9441a95f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:55:26 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3c7b0ba8-fec7-4d24-8b28-24cdd818dfa2"
+ ],
+ "x-ms-correlation-request-id": [
+ "8fec8310-eb57-497a-abb1-10d9ee149a02"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11922"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055537Z:8fec8310-eb57-497a-abb1-10d9ee149a02"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:55:36 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "7049860a-d0ee-4607-8089-43a981157908"
+ ],
+ "x-ms-correlation-request-id": [
+ "65b375e4-2b66-4b15-8213-719e3f7a1174"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11921"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055547Z:65b375e4-2b66-4b15-8213-719e3f7a1174"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:55:47 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "6d4749d5-4072-45e2-b39b-0a3eee443650"
+ ],
+ "x-ms-correlation-request-id": [
+ "6f905544-41c8-4080-b6b9-181de538144b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11920"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055557Z:6f905544-41c8-4080-b6b9-181de538144b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:55:57 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "8ffb6820-174e-4f7f-83b8-5b346ef6e3ec"
+ ],
+ "x-ms-correlation-request-id": [
+ "475b34fa-d9dd-49a0-a628-90b6de9c0d6d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11919"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055608Z:475b34fa-d9dd-49a0-a628-90b6de9c0d6d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:56:08 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "bb317451-aa04-4e42-9821-56ae9c89b180"
+ ],
+ "x-ms-correlation-request-id": [
+ "d3f8c020-4858-4d12-a85c-85bbe722a563"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11918"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055618Z:d3f8c020-4858-4d12-a85c-85bbe722a563"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:56:18 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "7da4c504-5bcb-4434-a23f-7f9e25ed038a"
+ ],
+ "x-ms-correlation-request-id": [
+ "54d3533e-5caa-4871-8299-bd98366cd501"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11917"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055629Z:54d3533e-5caa-4871-8299-bd98366cd501"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:56:28 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "16265e8a-cb05-452b-99f3-fd0b4f1f3930"
+ ],
+ "x-ms-correlation-request-id": [
+ "8689c382-8f3a-4eab-8c6d-008de0cdded1"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11916"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055639Z:8689c382-8f3a-4eab-8c6d-008de0cdded1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:56:39 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "40a38e3a-a130-40d7-9c48-ce6bd1063e9f"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b509f20-ec6e-4dbf-9ea4-f0e2f07ec4be"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11915"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055649Z:5b509f20-ec6e-4dbf-9ea4-f0e2f07ec4be"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:56:49 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "bd1359c3-4ed2-43c5-87e5-bed57dc034c6"
+ ],
+ "x-ms-correlation-request-id": [
+ "d1ebd4ae-27f7-4df7-9487-340472525aef"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11914"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055700Z:d1ebd4ae-27f7-4df7-9487-340472525aef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:57:00 GMT"
+ ],
+ "Content-Length": [
+ "30"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperations/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25zLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "39fad03a-110a-45ea-8e3d-d353ec1633c0"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb474c0e-634d-43b5-b6ad-34341d87aeab"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11913"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055710Z:bb474c0e-634d-43b5-b6ad-34341d87aeab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:57:09 GMT"
+ ],
+ "Content-Length": [
+ "29"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/providers/Microsoft.Network/locations/eastus2/nfvOperationResults/24df2e0c-dc45-4a3b-84ec-001c4cface41?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9uZnZPcGVyYXRpb25SZXN1bHRzLzI0ZGYyZTBjLWRjNDUtNGEzYi04NGVjLTAwMWM0Y2ZhY2U0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Network.NetworkManagementClient/616.830.54562.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "dca2e9c8-21f8-420b-8f0c-1f1d19098987"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a8be15c-1363-4e07-858c-0abd74eda727"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11912"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055711Z:3a8be15c-1363-4e07-858c-0abd74eda727"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:57:11 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "\"\"",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/resourcegroups/ps7173?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL3Jlc291cmNlZ3JvdXBzL3BzNzE3Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "382c9c0c-5140-440a-8625-02255ae2d401"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "3d0aac4c-b5b3-42c8-b95f-3c1a50419709"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d0aac4c-b5b3-42c8-b95f-3c1a50419709"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055714Z:3d0aac4c-b5b3-42c8-b95f-3c1a50419709"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:57:13 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11836"
+ ],
+ "x-ms-request-id": [
+ "a1d016c5-893d-42e9-a07b-751c195ac602"
+ ],
+ "x-ms-correlation-request-id": [
+ "a1d016c5-893d-42e9-a07b-751c195ac602"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055729Z:a1d016c5-893d-42e9-a07b-751c195ac602"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:57:28 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11835"
+ ],
+ "x-ms-request-id": [
+ "1dd121b9-6f6f-4c8c-ad3b-21871c7f4996"
+ ],
+ "x-ms-correlation-request-id": [
+ "1dd121b9-6f6f-4c8c-ad3b-21871c7f4996"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055744Z:1dd121b9-6f6f-4c8c-ad3b-21871c7f4996"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:57:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11834"
+ ],
+ "x-ms-request-id": [
+ "ceda9578-8cc7-4d1b-b638-905891e66d5f"
+ ],
+ "x-ms-correlation-request-id": [
+ "ceda9578-8cc7-4d1b-b638-905891e66d5f"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055800Z:ceda9578-8cc7-4d1b-b638-905891e66d5f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:58:00 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11833"
+ ],
+ "x-ms-request-id": [
+ "b9f7119d-5003-497b-95bf-f48ce18022f1"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9f7119d-5003-497b-95bf-f48ce18022f1"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055815Z:b9f7119d-5003-497b-95bf-f48ce18022f1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:58:14 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11832"
+ ],
+ "x-ms-request-id": [
+ "7b08eda6-6a4e-4015-b29f-89857fe2443f"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b08eda6-6a4e-4015-b29f-89857fe2443f"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055831Z:7b08eda6-6a4e-4015-b29f-89857fe2443f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:58:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11831"
+ ],
+ "x-ms-request-id": [
+ "c38df3d3-c5c0-402a-bac4-996ce1cbf36a"
+ ],
+ "x-ms-correlation-request-id": [
+ "c38df3d3-c5c0-402a-bac4-996ce1cbf36a"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055846Z:c38df3d3-c5c0-402a-bac4-996ce1cbf36a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:58:45 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11830"
+ ],
+ "x-ms-request-id": [
+ "8598be12-0b93-4263-8d9e-4edde58a56aa"
+ ],
+ "x-ms-correlation-request-id": [
+ "8598be12-0b93-4263-8d9e-4edde58a56aa"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055901Z:8598be12-0b93-4263-8d9e-4edde58a56aa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:59:01 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11829"
+ ],
+ "x-ms-request-id": [
+ "e61fc057-3650-4623-a1d7-300e2bb02a2c"
+ ],
+ "x-ms-correlation-request-id": [
+ "e61fc057-3650-4623-a1d7-300e2bb02a2c"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055917Z:e61fc057-3650-4623-a1d7-300e2bb02a2c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:59:16 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11828"
+ ],
+ "x-ms-request-id": [
+ "ec707d93-bd60-4456-b29d-a588378c8397"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec707d93-bd60-4456-b29d-a588378c8397"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055932Z:ec707d93-bd60-4456-b29d-a588378c8397"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:59:32 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11827"
+ ],
+ "x-ms-request-id": [
+ "e2f85cdf-a09b-41c6-9d66-96b4d814b9e1"
+ ],
+ "x-ms-correlation-request-id": [
+ "e2f85cdf-a09b-41c6-9d66-96b4d814b9e1"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T055947Z:e2f85cdf-a09b-41c6-9d66-96b4d814b9e1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 05:59:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11855"
+ ],
+ "x-ms-request-id": [
+ "58284ea8-9fca-4ef0-93ad-825b5ebc595e"
+ ],
+ "x-ms-correlation-request-id": [
+ "58284ea8-9fca-4ef0-93ad-825b5ebc595e"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060003Z:58284ea8-9fca-4ef0-93ad-825b5ebc595e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:00:03 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11854"
+ ],
+ "x-ms-request-id": [
+ "1c8db6f6-9c92-45c6-ad8d-01376b11d43b"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c8db6f6-9c92-45c6-ad8d-01376b11d43b"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060018Z:1c8db6f6-9c92-45c6-ad8d-01376b11d43b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:00:18 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11853"
+ ],
+ "x-ms-request-id": [
+ "6e08e9cc-69a5-4ce2-9495-fd18154c5683"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e08e9cc-69a5-4ce2-9495-fd18154c5683"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060033Z:6e08e9cc-69a5-4ce2-9495-fd18154c5683"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:00:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11852"
+ ],
+ "x-ms-request-id": [
+ "0cfa4fd0-f17f-45ac-9da0-16d33eec2f3f"
+ ],
+ "x-ms-correlation-request-id": [
+ "0cfa4fd0-f17f-45ac-9da0-16d33eec2f3f"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060049Z:0cfa4fd0-f17f-45ac-9da0-16d33eec2f3f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:00:48 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11851"
+ ],
+ "x-ms-request-id": [
+ "c2fa6782-6427-4c8b-9bd6-15bcc88125c1"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2fa6782-6427-4c8b-9bd6-15bcc88125c1"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060104Z:c2fa6782-6427-4c8b-9bd6-15bcc88125c1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:01:04 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11850"
+ ],
+ "x-ms-request-id": [
+ "b60f14fa-d716-4935-93bd-675ebec69bea"
+ ],
+ "x-ms-correlation-request-id": [
+ "b60f14fa-d716-4935-93bd-675ebec69bea"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060119Z:b60f14fa-d716-4935-93bd-675ebec69bea"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:01:19 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11849"
+ ],
+ "x-ms-request-id": [
+ "11169eef-4b7f-40a7-ba59-4f6383a3d183"
+ ],
+ "x-ms-correlation-request-id": [
+ "11169eef-4b7f-40a7-ba59-4f6383a3d183"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060135Z:11169eef-4b7f-40a7-ba59-4f6383a3d183"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:01:34 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11848"
+ ],
+ "x-ms-request-id": [
+ "497c01ea-2326-4414-be42-06b8a51fe5e4"
+ ],
+ "x-ms-correlation-request-id": [
+ "497c01ea-2326-4414-be42-06b8a51fe5e4"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060150Z:497c01ea-2326-4414-be42-06b8a51fe5e4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:01:50 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11847"
+ ],
+ "x-ms-request-id": [
+ "af8d709d-8d03-4dc8-bdaa-728ebaa38580"
+ ],
+ "x-ms-correlation-request-id": [
+ "af8d709d-8d03-4dc8-bdaa-728ebaa38580"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060205Z:af8d709d-8d03-4dc8-bdaa-728ebaa38580"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:02:05 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11846"
+ ],
+ "x-ms-request-id": [
+ "cfd0555b-3c23-4019-898d-2d125c735f77"
+ ],
+ "x-ms-correlation-request-id": [
+ "cfd0555b-3c23-4019-898d-2d125c735f77"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060221Z:cfd0555b-3c23-4019-898d-2d125c735f77"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:02:21 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11845"
+ ],
+ "x-ms-request-id": [
+ "ce8608fb-c27f-4174-b265-4bec2b410ac6"
+ ],
+ "x-ms-correlation-request-id": [
+ "ce8608fb-c27f-4174-b265-4bec2b410ac6"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060236Z:ce8608fb-c27f-4174-b265-4bec2b410ac6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:02:36 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11844"
+ ],
+ "x-ms-request-id": [
+ "998806b8-4760-4755-9cec-a1992cbc7531"
+ ],
+ "x-ms-correlation-request-id": [
+ "998806b8-4760-4755-9cec-a1992cbc7531"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060252Z:998806b8-4760-4755-9cec-a1992cbc7531"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:02:51 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11843"
+ ],
+ "x-ms-request-id": [
+ "3f31b482-afe7-408a-9a71-01050943359f"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f31b482-afe7-408a-9a71-01050943359f"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060307Z:3f31b482-afe7-408a-9a71-01050943359f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:03:07 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11842"
+ ],
+ "x-ms-request-id": [
+ "9f8df43f-c644-49b0-98e1-48378c49b194"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f8df43f-c644-49b0-98e1-48378c49b194"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060322Z:9f8df43f-c644-49b0-98e1-48378c49b194"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:03:22 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11841"
+ ],
+ "x-ms-request-id": [
+ "4c759072-fea7-4426-b026-d9fc62b563a9"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c759072-fea7-4426-b026-d9fc62b563a9"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060338Z:4c759072-fea7-4426-b026-d9fc62b563a9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:03:37 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11840"
+ ],
+ "x-ms-request-id": [
+ "e9bb52a1-b54c-46d6-a49f-a355dc04149e"
+ ],
+ "x-ms-correlation-request-id": [
+ "e9bb52a1-b54c-46d6-a49f-a355dc04149e"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060353Z:e9bb52a1-b54c-46d6-a49f-a355dc04149e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:03:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11839"
+ ],
+ "x-ms-request-id": [
+ "ff7ec770-7e87-4979-b90f-361d441b4f63"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff7ec770-7e87-4979-b90f-361d441b4f63"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060408Z:ff7ec770-7e87-4979-b90f-361d441b4f63"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:04:08 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11838"
+ ],
+ "x-ms-request-id": [
+ "fc85eb2a-7c12-4a36-8898-fa7f480a58d3"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc85eb2a-7c12-4a36-8898-fa7f480a58d3"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060424Z:fc85eb2a-7c12-4a36-8898-fa7f480a58d3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:04:24 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11837"
+ ],
+ "x-ms-request-id": [
+ "a633e84c-137a-498b-be12-06a94fa845dd"
+ ],
+ "x-ms-correlation-request-id": [
+ "a633e84c-137a-498b-be12-06a94fa845dd"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060439Z:a633e84c-137a-498b-be12-06a94fa845dd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:04:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11836"
+ ],
+ "x-ms-request-id": [
+ "bc511fc5-bde3-4434-aa00-0d49f85b0553"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc511fc5-bde3-4434-aa00-0d49f85b0553"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060455Z:bc511fc5-bde3-4434-aa00-0d49f85b0553"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:04:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11864"
+ ],
+ "x-ms-request-id": [
+ "38208b16-e249-436a-b5f6-acbae5c8e972"
+ ],
+ "x-ms-correlation-request-id": [
+ "38208b16-e249-436a-b5f6-acbae5c8e972"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060510Z:38208b16-e249-436a-b5f6-acbae5c8e972"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:05:09 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11863"
+ ],
+ "x-ms-request-id": [
+ "e0ef7cc5-a145-43dd-aae1-c4574b292b05"
+ ],
+ "x-ms-correlation-request-id": [
+ "e0ef7cc5-a145-43dd-aae1-c4574b292b05"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060526Z:e0ef7cc5-a145-43dd-aae1-c4574b292b05"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:05:26 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11862"
+ ],
+ "x-ms-request-id": [
+ "54c05852-7695-4dd9-8ec6-f99a945fa848"
+ ],
+ "x-ms-correlation-request-id": [
+ "54c05852-7695-4dd9-8ec6-f99a945fa848"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060542Z:54c05852-7695-4dd9-8ec6-f99a945fa848"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:05:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11861"
+ ],
+ "x-ms-request-id": [
+ "05e2d003-8457-458a-990d-edb1515d2528"
+ ],
+ "x-ms-correlation-request-id": [
+ "05e2d003-8457-458a-990d-edb1515d2528"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060557Z:05e2d003-8457-458a-990d-edb1515d2528"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:05:57 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11860"
+ ],
+ "x-ms-request-id": [
+ "82733af8-9cbb-4faf-925e-fd5674b7c730"
+ ],
+ "x-ms-correlation-request-id": [
+ "82733af8-9cbb-4faf-925e-fd5674b7c730"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060612Z:82733af8-9cbb-4faf-925e-fd5674b7c730"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:06:12 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11859"
+ ],
+ "x-ms-request-id": [
+ "bb417695-0b0f-4448-b63b-50704b164d28"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb417695-0b0f-4448-b63b-50704b164d28"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060628Z:bb417695-0b0f-4448-b63b-50704b164d28"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:06:28 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://brazilus.management.azure.com/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11858"
+ ],
+ "x-ms-request-id": [
+ "e3529e09-e81d-47cd-a6d0-4cf0e4570714"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3529e09-e81d-47cd-a6d0-4cf0e4570714"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060644Z:e3529e09-e81d-47cd-a6d0-4cf0e4570714"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:06:43 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11857"
+ ],
+ "x-ms-request-id": [
+ "f708df77-637c-4159-8d04-c6a7d30d052f"
+ ],
+ "x-ms-correlation-request-id": [
+ "f708df77-637c-4159-8d04-c6a7d30d052f"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060659Z:f708df77-637c-4159-8d04-c6a7d30d052f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:06:58 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/5e1e8156-5dec-452a-bfe5-6b6e0947c27a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzMtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWUxZTgxNTYtNWRlYy00NTJhLWJmZTUtNmI2ZTA5NDdjMjdhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56TXRSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11856"
+ ],
+ "x-ms-request-id": [
+ "a566b21c-3db8-4d1d-8f66-47208964737a"
+ ],
+ "x-ms-correlation-request-id": [
+ "a566b21c-3db8-4d1d-8f66-47208964737a"
+ ],
+ "x-ms-routing-request-id": [
+ "BRAZILUS:20200618T060700Z:a566b21c-3db8-4d1d-8f66-47208964737a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 18 Jun 2020 06:07:00 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-NetworkVirtualApplianceCRUD": [
+ "ps7173",
+ "ps4399",
+ "ps587",
+ "ps6483"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "5e1e8156-5dec-452a-bfe5-6b6e0947c27a"
+ }
+}
\ No newline at end of file
diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1
index fc5da1695f1b..a4550635be77 100644
--- a/src/Network/Network/Az.Network.psd1
+++ b/src/Network/Network/Az.Network.psd1
@@ -493,7 +493,19 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate',
'Reset-AzHubRouter',
'New-AzVHubRoute', 'New-AzStaticRoute', 'New-AzRoutingConfiguration',
'New-AzVHubRouteTable', 'Get-AzVHubRouteTable',
- 'Update-AzVHubRouteTable', 'Remove-AzVHubRouteTable'
+ 'Update-AzVHubRouteTable', 'Remove-AzVHubRouteTable',
+ 'Get-AzNetworkVirtualAppliance',
+ 'New-AzNetworkVirtualAppliance',
+ 'Remove-AzNetworkVirtualAppliance',
+ 'Update-AzNetworkVirtualAppliance',
+ 'Get-AzVirtualApplianceSite',
+ 'New-AzVirtualApplianceSite',
+ 'Remove-AzVirtualApplianceSite',
+ 'Update-AzVirtualApplianceSite',
+ 'New-AzOffice365PolicyProperty',
+ 'Get-AzNetworkVirtualApplianceSku',
+ 'New-AzVirtualApplianceSkuProperty'
+
# Variables to export from this module
# VariablesToExport = @()
diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md
index 75dd081cfcbf..e17e1d6141f0 100644
--- a/src/Network/Network/ChangeLog.md
+++ b/src/Network/Network/ChangeLog.md
@@ -19,6 +19,19 @@
--->
## Upcoming Release
+* Added new cmdlets for Azure Network Virtual Appliance Sites
+ - `Get-AzVirtualApplianceSite`
+ - `New-AzVirtualApplianceSite`
+ - `Remove-AzVirtualApplianceSite`
+ - `Update-AzVirtualApplianceSite`
+ - `New-AzOffice365PolicyProperty`
+* Added new cmdlets for Azure Network Virtual Appliance
+ - `Get-AzNetworkVirtualAppliance`
+ - `New-AzNetworkVirtualAppliance`
+ - `Remove-AzNetworkVirtualAppliance`
+ - `Update-AzNetworkVirtualAppliance`
+ - `Get-AzNetworkVirtualApplianceSku`
+ - `New-AzVirtualApplianceSkuProperty`
* Added support for AddressPrefixType parameter to `Remove-AzExpressRouteCircuitConnectionConfig`
* Added new cmdlets for Azure FirewallPolicy
- New-AzFirewallPolicyDnsSetting
diff --git a/src/Network/Network/Common/NetworkBaseCmdlet.cs b/src/Network/Network/Common/NetworkBaseCmdlet.cs
index 43e88249c20f..c4c8feb8317d 100644
--- a/src/Network/Network/Common/NetworkBaseCmdlet.cs
+++ b/src/Network/Network/Common/NetworkBaseCmdlet.cs
@@ -16,6 +16,7 @@
using Microsoft.Azure.Commands.ResourceManager.Common;
using Microsoft.Azure.Commands.Network.Common;
using System.Collections.Generic;
+using System.Text.RegularExpressions;
namespace Microsoft.Azure.Commands.Network
{
@@ -82,6 +83,16 @@ public static string GetResourceGroup(string resourceId)
return resourceId.Substring(startIndex, endIndex - startIndex);
}
+ public static string GetResourceName(string resourceId, string resourceName, string instanceName = null, string version = null)
+ {
+ if (string.IsNullOrEmpty(resourceId)) { return null; }
+ Regex r = (instanceName == null && version == null)
+ ? new Regex(@"(.*?)/" + resourceName + @"/(?\S+)", RegexOptions.IgnoreCase)
+ : new Regex(@"(.*?)/" + resourceName + @"/(?\S+)/" + instanceName + @"/(?\S+)", RegexOptions.IgnoreCase);
+ Match m = r.Match(resourceId);
+ return m.Success ? m.Groups["rgname"].Value : null;
+ }
+
public static bool IsResourcePresent(Action fn)
{
try
diff --git a/src/Network/Network/Common/NetworkResourceManagerProfile.cs b/src/Network/Network/Common/NetworkResourceManagerProfile.cs
index 93969c899a90..65cdf7fd0c0d 100644
--- a/src/Network/Network/Common/NetworkResourceManagerProfile.cs
+++ b/src/Network/Network/Common/NetworkResourceManagerProfile.cs
@@ -1389,6 +1389,28 @@ private static void Initialize()
// IpAllocation
cfg.CreateMap();
cfg.CreateMap();
+
+ // Network Virtual Appliance & Sites
+ // CNM to MNM
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+
+ // MNM to CNM
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+ cfg.CreateMap();
+
});
_mapper = config.CreateMapper();
diff --git a/src/Network/Network/Models/PSBreakOutCategoryPolicies.cs b/src/Network/Network/Models/PSBreakOutCategoryPolicies.cs
new file mode 100644
index 000000000000..2d8f0885d93d
--- /dev/null
+++ b/src/Network/Network/Models/PSBreakOutCategoryPolicies.cs
@@ -0,0 +1,28 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ public class PSBreakOutCategoryPolicies
+ {
+ public bool? Allow { get; set; }
+ public bool? Optimize { get; set; }
+ public bool? DefaultProperty { get; set; }
+ }
+}
diff --git a/src/Network/Network/Models/PSNetworkVirtualAppliance.cs b/src/Network/Network/Models/PSNetworkVirtualAppliance.cs
new file mode 100644
index 000000000000..34ed0305e7ab
--- /dev/null
+++ b/src/Network/Network/Models/PSNetworkVirtualAppliance.cs
@@ -0,0 +1,46 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ using Microsoft.Azure.Management.Internal.Network.Common;
+ using Newtonsoft.Json;
+ using System.Collections.Generic;
+ using WindowsAzure.Commands.Common.Attributes;
+ using Microsoft.Azure.Management.Network.Models;
+ public class PSNetworkVirtualAppliance : PSTopLevelResource
+ {
+
+ public IList BootStrapConfigurationBlobs { get; set; }
+
+ public PSResourceId VirtualHub { get; set; }
+
+ public IList CloudInitConfigurationBlobs { get; set; }
+
+ public string CloudInitConfiguration { get; set; }
+
+ public long? VirtualApplianceAsn { get; set; }
+
+ public IList VirtualApplianceNics { get; set; }
+
+ public IList VirtualApplianceSites { get; set; }
+
+ public string ProvisioningState { get; set; }
+
+ public PSManagedServiceIdentity Identity { get; set; }
+
+ public PSVirtualApplianceSkuProperties NvaSku { get; set; }
+ }
+}
diff --git a/src/Network/Network/Models/PSNetworkVirtualApplianceSku.cs b/src/Network/Network/Models/PSNetworkVirtualApplianceSku.cs
new file mode 100644
index 000000000000..d48f2b099f50
--- /dev/null
+++ b/src/Network/Network/Models/PSNetworkVirtualApplianceSku.cs
@@ -0,0 +1,29 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Management.Network.Models;
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ public class PSNetworkVirtualApplianceSku : PSChildResource
+ {
+ public string Vendor { get; set; }
+ public IList AvailableVersions { get; set; }
+ public IList AvailableScaleUnits { get; set; }
+ }
+}
diff --git a/src/Network/Network/Models/PSNetworkVirtualApplianceSkuInstances.cs b/src/Network/Network/Models/PSNetworkVirtualApplianceSkuInstances.cs
new file mode 100644
index 000000000000..4cc8f3ab7c6d
--- /dev/null
+++ b/src/Network/Network/Models/PSNetworkVirtualApplianceSkuInstances.cs
@@ -0,0 +1,27 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ public class PSNetworkVirtualApplianceSkuInstances
+ {
+ public string ScaleUnit { get; set; }
+ public int? InstanceCount { get; set; }
+ }
+}
diff --git a/src/Network/Network/Models/PSOffice365PolicyProperties.cs b/src/Network/Network/Models/PSOffice365PolicyProperties.cs
new file mode 100644
index 000000000000..e62f5394d735
--- /dev/null
+++ b/src/Network/Network/Models/PSOffice365PolicyProperties.cs
@@ -0,0 +1,27 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Management.Network.Models;
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ public class PSOffice365PolicyProperties
+ {
+ public PSBreakOutCategoryPolicies BreakOutCategories { get; set; }
+ }
+}
diff --git a/src/Network/Network/Models/PSVirtualApplianceNicProperties.cs b/src/Network/Network/Models/PSVirtualApplianceNicProperties.cs
new file mode 100644
index 000000000000..0bfe0a08a435
--- /dev/null
+++ b/src/Network/Network/Models/PSVirtualApplianceNicProperties.cs
@@ -0,0 +1,28 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ public class PSVirtualApplianceNicProperties
+ {
+ public string Name { get; set; }
+ public string PublicIpAddress { get; set; }
+ public string PrivateIpAddress { get; set; }
+ }
+}
diff --git a/src/Network/Network/Models/PSVirtualApplianceSite.cs b/src/Network/Network/Models/PSVirtualApplianceSite.cs
new file mode 100644
index 000000000000..2f5f06155a1e
--- /dev/null
+++ b/src/Network/Network/Models/PSVirtualApplianceSite.cs
@@ -0,0 +1,29 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Management.Network.Models;
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ public class PSVirtualApplianceSite : PSChildResource
+ {
+ public string AddressPrefix { get; set; }
+ public PSOffice365PolicyProperties O365Policy { get; set; }
+ public string ProvisioningState { get; set; }
+ }
+}
diff --git a/src/Network/Network/Models/PSVirtualApplianceSkuProperties.cs b/src/Network/Network/Models/PSVirtualApplianceSkuProperties.cs
new file mode 100644
index 000000000000..272ca1e59dce
--- /dev/null
+++ b/src/Network/Network/Models/PSVirtualApplianceSkuProperties.cs
@@ -0,0 +1,28 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Network.Models
+{
+ public class PSVirtualApplianceSkuProperties
+ {
+ public string Vendor { get; set; }
+ public string BundledScaleUnit { get; set; }
+ public string MarketPlaceVersion { get; set; }
+ }
+}
diff --git a/src/Network/Network/NetworkVirtualAppliance/GetNetworkVirtualApplianceCommand.cs b/src/Network/Network/NetworkVirtualAppliance/GetNetworkVirtualApplianceCommand.cs
new file mode 100644
index 000000000000..cb98f9c2d73e
--- /dev/null
+++ b/src/Network/Network/NetworkVirtualAppliance/GetNetworkVirtualApplianceCommand.cs
@@ -0,0 +1,103 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Graph.RBAC.Version1_6.ActiveDirectory;
+using Microsoft.Azure.Management.Network;
+using Microsoft.Azure.Management.Network.Models;
+using Microsoft.Rest.Azure;
+using System;
+using System.Collections.Generic;
+using System.Management.Automation;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetworkVirtualAppliance", DefaultParameterSetName = ResourceNameParameterSet), OutputType(typeof(PSNetworkVirtualAppliance))]
+ public class GetNetworkVirtualApplianceCommand : NetworkVirtualApplianceBaseCmdlet
+ {
+ private const string ResourceNameParameterSet = "ResourceNameParameterSet";
+ private const string ResourceIdParameterSet = "ResourceIdParameterSet";
+
+ [Alias("ResourceName")]
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource name.",
+ ParameterSetName = ResourceNameParameterSet)]
+ [ValidateNotNullOrEmpty]
+ public virtual string Name { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource group name.",
+ ParameterSetName = ResourceNameParameterSet)]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceGroupName { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource Id.",
+ ParameterSetName = ResourceIdParameterSet)]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceId { get; set; }
+
+ public override void Execute()
+ {
+ base.Execute();
+ if (ParameterSetName.Equals(ResourceIdParameterSet))
+ {
+ this.ResourceGroupName = GetResourceGroup(this.ResourceId);
+ this.Name = GetResourceName(this.ResourceId, "Microsoft.Network/networkVirtualAppliances");
+ }
+
+ if (ShouldGetByName(this.ResourceGroupName, this.Name))
+ {
+ var nva = this.GetNetworkVirtualAppliance(this.ResourceGroupName, this.Name);
+ WriteObject(nva);
+ }
+ else
+ {
+ IPage nvaPage;
+ if (ShouldListByResourceGroup(this.ResourceGroupName, this.Name))
+ {
+ nvaPage = this.NetworkVirtualAppliancesClient.ListByResourceGroup(this.ResourceGroupName);
+ }
+ else
+ {
+ nvaPage = this.NetworkVirtualAppliancesClient.List();
+ }
+
+ // Get all resources by polling on next page link
+ var nvaList = ListNextLink.GetAllResourcesByPollingNextLink(nvaPage, this.NetworkVirtualAppliancesClient.ListNext);
+
+ var psNvas= new List();
+
+ foreach (var nva in nvaList)
+ {
+ var psNva = this.ToPsNetworkVirtualAppliance(nva);
+ psNva.ResourceGroupName = NetworkBaseCmdlet.GetResourceGroup(nva.Id);
+ psNvas.Add(psNva);
+ }
+
+ WriteObject(TopLevelWildcardFilter(this.ResourceGroupName, this.Name, psNvas), true);
+ }
+ }
+ }
+}
diff --git a/src/Network/Network/NetworkVirtualAppliance/NetworkVirtualApplianceBaseCmdlet.cs b/src/Network/Network/NetworkVirtualAppliance/NetworkVirtualApplianceBaseCmdlet.cs
new file mode 100644
index 000000000000..ae4388b3c475
--- /dev/null
+++ b/src/Network/Network/NetworkVirtualAppliance/NetworkVirtualApplianceBaseCmdlet.cs
@@ -0,0 +1,71 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.Tags;
+using Microsoft.Azure.Management.Network;
+using System;
+using System.Collections.Generic;
+using System.Net;
+using System.Text;
+using Microsoft.Azure.Management.Network.Models;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ public abstract class NetworkVirtualApplianceBaseCmdlet : NetworkBaseCmdlet
+ {
+ public INetworkVirtualAppliancesOperations NetworkVirtualAppliancesClient
+ {
+ get
+ {
+ return NetworkClient.NetworkManagementClient.NetworkVirtualAppliances;
+ }
+ }
+
+ public bool IsNetworkVirtualAppliancePresent(string resourceGroupName, string name)
+ {
+ try
+ {
+ GetNetworkVirtualAppliance(resourceGroupName, name);
+ }
+ catch (Microsoft.Rest.Azure.CloudException exception)
+ {
+ if (exception.Response.StatusCode == HttpStatusCode.NotFound)
+ {
+ // Resource is not present
+ return false;
+ }
+ throw;
+ }
+ return true;
+ }
+
+ public PSNetworkVirtualAppliance GetNetworkVirtualAppliance(string resourceGroupName, string name, string expandResource = null)
+ {
+ var nva = this.NetworkVirtualAppliancesClient.Get(resourceGroupName, name, expandResource);
+ var psNva= NetworkResourceManagerProfile.Mapper.Map(nva);
+ psNva.ResourceGroupName = resourceGroupName;
+ psNva.Tag =
+ TagsConversionHelper.CreateTagHashtable(nva.Tags);
+ return psNva;
+ }
+ public PSNetworkVirtualAppliance ToPsNetworkVirtualAppliance(NetworkVirtualAppliance nva)
+ {
+ var psNva = NetworkResourceManagerProfile.Mapper.Map(nva);
+ psNva.Tag = TagsConversionHelper.CreateTagHashtable(nva.Tags);
+ return psNva;
+ }
+ }
+}
diff --git a/src/Network/Network/NetworkVirtualAppliance/NewNetworkVirtualApplianceCommand.cs b/src/Network/Network/NetworkVirtualAppliance/NewNetworkVirtualApplianceCommand.cs
new file mode 100644
index 000000000000..2a5d08675e3a
--- /dev/null
+++ b/src/Network/Network/NetworkVirtualAppliance/NewNetworkVirtualApplianceCommand.cs
@@ -0,0 +1,182 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Commands.ResourceManager.Common.Tags;
+using Microsoft.Azure.Management.Network;
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Management.Automation;
+using System.Management.Automation.Remoting;
+using System.Text;
+using MNM = Microsoft.Azure.Management.Network.Models;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetworkVirtualAppliance", SupportsShouldProcess = true, DefaultParameterSetName = ResourceNameParameterSet), OutputType(typeof(PSNetworkVirtualAppliance))]
+ public class NewNetworkVirtualApplianceCommand : NetworkVirtualApplianceBaseCmdlet
+ {
+ private const string ResourceNameParameterSet = "ResourceNameParameterSet";
+ private const string ResourceIdParameterSet = "ResourceIdParameterSet";
+
+ [Alias("ResourceName")]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceNameParameterSet,
+ HelpMessage = "The resource name.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceNameParameterSet,
+ HelpMessage = "The resource group name.")]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceGroupName { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceIdParameterSet,
+ HelpMessage = "The resource Id.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceId { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The public IP address location.")]
+ [ValidateNotNullOrEmpty]
+ public string Location { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Resource Id of the Virtual Hub.")]
+ [ValidateNotNullOrEmpty]
+ public string VirtualHubId { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Sku of the Virtual Appliance.")]
+ public PSVirtualApplianceSkuProperties Sku{ get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The ASN number of the Virtual Appliance.")]
+ [ValidateNotNullOrEmpty]
+ public int VirtualApplianceAsn { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Managed identity.")]
+ [ValidateNotNullOrEmpty]
+ public PSManagedServiceIdentity Identity { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Bootstrap configuration blob URL.")]
+ [ValidateNotNullOrEmpty]
+ public string[] BootStrapConfigurationBlob { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Cloudinit configuration blob storage URL.")]
+ [ValidateNotNullOrEmpty]
+ public string[] CloudInitConfigurationBlob { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Cloudinit configuration as plain text.")]
+ [ValidateNotNullOrEmpty]
+ public string CloudInitConfiguration { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "A hashtable which represents resource tags.")]
+ public Hashtable Tag { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Do not ask for confirmation if you want to overwrite a resource")]
+ public SwitchParameter Force { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+ public override void Execute()
+ {
+ base.Execute();
+ if (ParameterSetName.Equals(ResourceIdParameterSet))
+ {
+ this.ResourceGroupName = GetResourceGroup(this.ResourceId);
+ this.Name = GetResourceName(this.ResourceId, "Microsoft.Network/networkVirtualAppliances");
+ }
+ var present = this.IsNetworkVirtualAppliancePresent(this.ResourceGroupName, this.Name);
+ ConfirmAction(
+ Force.IsPresent,
+ string.Format(Properties.Resources.OverwritingResource, Name),
+ Properties.Resources.CreatingResourceMessage,
+ Name,
+ () =>
+ {
+ var nva = CreateNetworkVirtualAppliance();
+ if (present)
+ {
+ nva = this.GetNetworkVirtualAppliance(this.ResourceGroupName, this.Name);
+ }
+
+ WriteObject(nva);
+ },
+ () => present);
+ }
+
+ private PSNetworkVirtualAppliance CreateNetworkVirtualAppliance()
+ {
+ var networkVirtualAppliance = new PSNetworkVirtualAppliance();
+ networkVirtualAppliance.Name = this.Name;
+ networkVirtualAppliance.Location = this.Location;
+ networkVirtualAppliance.VirtualHub = new PSResourceId();
+ networkVirtualAppliance.VirtualHub.Id = this.VirtualHubId;
+ networkVirtualAppliance.VirtualApplianceAsn = this.VirtualApplianceAsn;
+ networkVirtualAppliance.NvaSku = this.Sku;
+ networkVirtualAppliance.Identity = this.Identity;
+ networkVirtualAppliance.BootStrapConfigurationBlobs = this.BootStrapConfigurationBlob;
+ networkVirtualAppliance.CloudInitConfigurationBlobs = this.CloudInitConfigurationBlob;
+ networkVirtualAppliance.CloudInitConfiguration = this.CloudInitConfiguration;
+
+ var networkVirtualApplianceModel = NetworkResourceManagerProfile.Mapper.Map(networkVirtualAppliance);
+
+ networkVirtualApplianceModel.Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true);
+
+ this.NetworkVirtualAppliancesClient.CreateOrUpdate(this.ResourceGroupName, this.Name, networkVirtualApplianceModel);
+
+ var getNetworkVirtualAppliance = this.GetNetworkVirtualAppliance(this.ResourceGroupName, this.Name);
+ return getNetworkVirtualAppliance;
+ }
+ }
+}
diff --git a/src/Network/Network/NetworkVirtualAppliance/RemoveNetworkVirtualApplianceCommand.cs b/src/Network/Network/NetworkVirtualAppliance/RemoveNetworkVirtualApplianceCommand.cs
new file mode 100644
index 000000000000..e631fa666409
--- /dev/null
+++ b/src/Network/Network/NetworkVirtualAppliance/RemoveNetworkVirtualApplianceCommand.cs
@@ -0,0 +1,107 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Management.Network;
+using System;
+using System.Collections.Generic;
+using System.Management.Automation;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetworkVirtualAppliance", SupportsShouldProcess = true, DefaultParameterSetName = ResourceNameParameterSet), OutputType(typeof(bool))]
+ public class RemoveNetworkVirtualApplianceCommand : NetworkVirtualApplianceBaseCmdlet
+ {
+ private const string ResourceNameParameterSet = "ResourceNameParameterSet";
+ private const string ResourceIdParameterSet = "ResourceIdParameterSet";
+ private const string ResourceObjectParameterSet = "ResourceObjectParameterSet";
+
+ [Alias("ResourceName")]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceNameParameterSet,
+ HelpMessage = "The resource name.")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceNameParameterSet,
+ HelpMessage = "The resource group name.")]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceIdParameterSet,
+ HelpMessage = "The Resource Id.")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceId{ get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceObjectParameterSet,
+ HelpMessage = "The resource object.")]
+ [ValidateNotNullOrEmpty]
+ public PSNetworkVirtualAppliance NetworkVirtualAppliance { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Do not ask for confirmation.")]
+ public SwitchParameter Force { get; set; }
+
+ [Parameter(Mandatory = false)]
+ public SwitchParameter PassThru { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+ public override void Execute()
+ {
+ base.Execute();
+
+ if (ParameterSetName.Equals(ResourceObjectParameterSet))
+ {
+ this.ResourceGroupName = GetResourceGroup(NetworkVirtualAppliance.Id);
+ this.Name = NetworkVirtualAppliance.Name;
+ }
+ else if (ParameterSetName.Equals(ResourceIdParameterSet))
+ {
+ this.ResourceGroupName = GetResourceGroup(ResourceId);
+ this.Name = GetResourceName(ResourceId, "Microsoft.Network/networkVirtualAppliances");
+ }
+ ConfirmAction(
+ Force.IsPresent,
+ string.Format(Properties.Resources.RemovingResource, Name),
+ Properties.Resources.RemoveResourceMessage,
+ Name,
+ () =>
+ {
+ this.NetworkVirtualAppliancesClient.Delete(this.ResourceGroupName, this.Name);
+ if (PassThru)
+ {
+ WriteObject(true);
+ }
+ });
+ }
+ }
+}
diff --git a/src/Network/Network/NetworkVirtualAppliance/Sites/GetVirtualApplianceSiteCommand.cs b/src/Network/Network/NetworkVirtualAppliance/Sites/GetVirtualApplianceSiteCommand.cs
new file mode 100644
index 000000000000..13be562ae309
--- /dev/null
+++ b/src/Network/Network/NetworkVirtualAppliance/Sites/GetVirtualApplianceSiteCommand.cs
@@ -0,0 +1,170 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Management.Network;
+using Microsoft.Azure.Management.Network.Models;
+using Microsoft.Rest.Azure;
+using System;
+using System.Collections.Generic;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VirtualApplianceSite", DefaultParameterSetName = ResourceNameParameterSet), OutputType(typeof(PSVirtualApplianceSite))]
+ public class GetVirtualApplianceSiteCommand : VirtualApplianceSiteBaseCmdlet
+ {
+ private const string ResourceNameParameterSet = "ResourceNameParameterSet";
+ private const string ResourceIdParameterSet = "ResourceIdParameterSet";
+
+ private string NvaName;
+
+ [Alias("ResourceName")]
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource name.",
+ ParameterSetName = ResourceNameParameterSet)]
+ public virtual string Name { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Network Virtual Appliance that the site is attached.",
+ ParameterSetName = ResourceNameParameterSet)]
+ public virtual string NetworkVirtualApplianceId { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource group name.",
+ ParameterSetName = ResourceNameParameterSet)]
+ [ResourceGroupCompleter]
+ public virtual string ResourceGroupName { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource Id of the Virtual Appliance Site.",
+ ParameterSetName = ResourceIdParameterSet)]
+ public virtual string ResourceId { get; set; }
+
+ public override void Execute()
+ {
+ base.Execute();
+ if (ParameterSetName.Equals(ResourceIdParameterSet))
+ {
+ this.ResourceGroupName = GetResourceGroup(this.ResourceId);
+ this.NvaName = GetResourceName(this.ResourceId, "Microsoft.Network/networkVirtualAppliances", "virtualApplianceSites");
+ this.Name = GetResourceName(this.ResourceId, "virtualAppliancesites");
+ }
+ else
+ {
+ this.NvaName = GetResourceName(this.NetworkVirtualApplianceId, "Microsoft.Network/networkVirtualAppliances");
+ if (!(String.IsNullOrEmpty(NetworkVirtualApplianceId)))
+ {
+ string nvaRg = GetResourceGroup(NetworkVirtualApplianceId);
+ if (!nvaRg.Equals(this.ResourceGroupName))
+ {
+ throw new Exception("The resource group for Network Virtual Appliance is not same as that of site.");
+ }
+ }
+ }
+ if (ShouldGetByName(this.ResourceGroupName, this.NvaName, this.Name))
+ {
+ var site = this.GetVirtualApplianceSite(this.ResourceGroupName, this.NvaName, this.Name);
+ WriteObject(site);
+ }
+ else
+ {
+ IPage sitePage;
+
+ if(ShouldListByNva(this.ResourceGroupName, this.NvaName, this.Name))
+ {
+ sitePage = this.VirtualApplianceSitesClient.List(this.ResourceGroupName, this.NvaName);
+ // Get all resources by polling on next page link
+ var siteList = ListNextLink.GetAllResourcesByPollingNextLink(sitePage, this.VirtualApplianceSitesClient.ListNext);
+
+ var psSites = new List();
+
+ foreach (var site in siteList)
+ {
+ var psSite = this.ToPsVirtualApplianceSite(site);
+ psSites.Add(psSite);
+ }
+ WriteObject(TopLevelWildcardFilter(this.ResourceGroupName, this.Name, psSites), true);
+ }
+ if (ShouldListByResourceGroup(this.ResourceGroupName, this.NvaName))
+ {
+ var nvaClient = this.NetworkClient.NetworkManagementClient.NetworkVirtualAppliances;
+ var nvaPage = nvaClient.ListByResourceGroup(this.ResourceGroupName);
+ var nvas = ListNextLink.GetAllResourcesByPollingNextLink(nvaPage, nvaClient.ListNext);
+ var psSites = new List();
+ foreach (var nva in nvas)
+ {
+ sitePage = this.VirtualApplianceSitesClient.List(this.ResourceGroupName, nva.Name);
+ // Get all resources by polling on next page link
+ var siteList = ListNextLink.GetAllResourcesByPollingNextLink(sitePage, this.VirtualApplianceSitesClient.ListNext);
+ foreach (var site in siteList)
+ {
+ var psSite = this.ToPsVirtualApplianceSite(site);
+ psSites.Add(psSite);
+ }
+ }
+ WriteObject(TopLevelWildcardFilter(this.ResourceGroupName, this.Name, psSites), true);
+ }
+ else if(ShouldListBySubscription(this.ResourceGroupName, this.NvaName))
+ {
+ var nvaClient = this.NetworkClient.NetworkManagementClient.NetworkVirtualAppliances;
+ var nvaPage = nvaClient.List();
+ var nvas = ListNextLink.GetAllResourcesByPollingNextLink(nvaPage, nvaClient.ListNext);
+ var psSites = new List();
+ foreach (var nva in nvas)
+ {
+ var rg = GetResourceGroup(nva.Id);
+ sitePage = this.VirtualApplianceSitesClient.List(rg, nva.Name);
+ // Get all resources by polling on next page link
+ var siteList = ListNextLink.GetAllResourcesByPollingNextLink(sitePage, this.VirtualApplianceSitesClient.ListNext);
+ foreach (var site in siteList)
+ {
+ var psSite = this.ToPsVirtualApplianceSite(site);
+ psSites.Add(psSite);
+ }
+ }
+ WriteObject(TopLevelWildcardFilter(this.ResourceGroupName, this.Name, psSites), true);
+ }
+ }
+ }
+
+ private bool ShouldListByNva(string resourceGroupName, string nvaName, string name)
+ {
+ return !string.IsNullOrEmpty(resourceGroupName) &&
+ !WildcardPattern.ContainsWildcardCharacters(resourceGroupName) &&
+ !string.IsNullOrEmpty(nvaName) &&
+ !WildcardPattern.ContainsWildcardCharacters(nvaName) &&
+ (string.IsNullOrEmpty(name) || WildcardPattern.ContainsWildcardCharacters(name));
+ }
+ private bool ShouldGetByName(string resourceGroupName, string nvaName, string name)
+ {
+ return !string.IsNullOrEmpty(resourceGroupName) &&
+ !WildcardPattern.ContainsWildcardCharacters(resourceGroupName) &&
+ !string.IsNullOrEmpty(nvaName) &&
+ !WildcardPattern.ContainsWildcardCharacters(nvaName) &&
+ !string.IsNullOrEmpty(name) &&
+ !WildcardPattern.ContainsWildcardCharacters(name);
+ }
+ }
+}
diff --git a/src/Network/Network/NetworkVirtualAppliance/Sites/NewVirtualApplianceSiteCommand.cs b/src/Network/Network/NetworkVirtualAppliance/Sites/NewVirtualApplianceSiteCommand.cs
new file mode 100644
index 000000000000..8f11a4b06489
--- /dev/null
+++ b/src/Network/Network/NetworkVirtualAppliance/Sites/NewVirtualApplianceSiteCommand.cs
@@ -0,0 +1,147 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Management.Network;
+using System;
+using System.Collections;
+using System.Management.Automation;
+using MNM = Microsoft.Azure.Management.Network.Models;
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VirtualApplianceSite", SupportsShouldProcess = true, DefaultParameterSetName = ResourceNameParameterSet), OutputType(typeof(PSVirtualApplianceSite))]
+ public class NewVirtualApplianceSiteCommand : VirtualApplianceSiteBaseCmdlet
+ {
+
+ private const string ResourceNameParameterSet = "ResourceNameParameterSet";
+ private const string ResourceIdParameterSet = "ResourceIdParameterSet";
+
+ private string NvaName;
+
+ [Alias("ResourceName")]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceNameParameterSet,
+ HelpMessage = "The resource name.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceNameParameterSet,
+ HelpMessage = "The resource group name.")]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceGroupName { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceIdParameterSet,
+ HelpMessage = "The resource id.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceId { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The address prefix for the site.")]
+ [ValidateNotNullOrEmpty]
+ public string AddressPrefix { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Office 365 breakout policy.")]
+ [ValidateNotNullOrEmpty]
+ public PSOffice365PolicyProperties O365Policy { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Network virtual appliance that this site is attached to.")]
+ public string NetworkVirtualApplianceId { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "A hashtable which represents resource tags.")]
+ public Hashtable Tag { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Do not ask for confirmation if you want to overwrite a resource")]
+ public SwitchParameter Force { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+
+ public override void Execute()
+ {
+ base.Execute();
+ if (ParameterSetName.Equals(ResourceIdParameterSet))
+ {
+ this.ResourceGroupName = GetResourceGroup(this.ResourceId);
+ this.NvaName = GetResourceName(this.ResourceId, "Microsoft.Network/networkVirtualAppliances", "virtualApplianceSites");
+ this.Name = GetResourceName(this.ResourceId, "virtualAppliancesites");
+ }
+ else
+ {
+ this.NvaName = GetResourceName(NetworkVirtualApplianceId, "Microsoft.Network/networkVirtualAppliances");
+ string nvaRg = GetResourceGroup(NetworkVirtualApplianceId);
+ if (!nvaRg.Equals(this.ResourceGroupName))
+ {
+ throw new Exception("The resource group for Network Virtual Appliance is not same as that of site.");
+ }
+ }
+ var present = this.IsVirtualApplianceSitePresent(this.ResourceGroupName, this.NvaName, this.Name);
+ ConfirmAction(
+ Force.IsPresent,
+ string.Format(Properties.Resources.OverwritingResource, Name),
+ Properties.Resources.CreatingResourceMessage,
+ Name,
+ () =>
+ {
+ var site = CreateVirtualApplianceSite();
+ if (present)
+ {
+ site = this.GetVirtualApplianceSite(this.ResourceGroupName, this.NvaName, this.Name);
+ }
+
+ WriteObject(site);
+ },
+ () => present);
+ }
+
+ private PSVirtualApplianceSite CreateVirtualApplianceSite()
+ {
+ var psSite = new PSVirtualApplianceSite();
+ psSite.Name = this.Name;
+ psSite.O365Policy = this.O365Policy;
+ psSite.AddressPrefix = this.AddressPrefix;
+
+ var siteModel = NetworkResourceManagerProfile.Mapper.Map(psSite);
+
+ this.VirtualApplianceSitesClient.CreateOrUpdate(this.ResourceGroupName, this.NvaName, this.Name, siteModel);
+
+ var getSite = this.GetVirtualApplianceSite(this.ResourceGroupName, this.NvaName, this.Name);
+ return getSite;
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/Network/Network/NetworkVirtualAppliance/Sites/Office365PolicyProperties/NewOffice365PolicyPropertyCommand.cs b/src/Network/Network/NetworkVirtualAppliance/Sites/Office365PolicyProperties/NewOffice365PolicyPropertyCommand.cs
new file mode 100644
index 000000000000..bee5f1ea0765
--- /dev/null
+++ b/src/Network/Network/NetworkVirtualAppliance/Sites/Office365PolicyProperties/NewOffice365PolicyPropertyCommand.cs
@@ -0,0 +1,56 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.Network.Models;
+using System;
+using System.Collections.Generic;
+using System.Management.Automation;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Office365PolicyProperty"), OutputType(typeof(PSOffice365PolicyProperties))]
+ public class NewOffice365PolicyPropertyCommand : NetworkBaseCmdlet
+ {
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = false,
+ HelpMessage = "Breakout the allow category traffic.")]
+ public SwitchParameter Allow { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = false,
+ HelpMessage = "Breakout the optimize category traffic.")]
+ public SwitchParameter Optimize { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = false,
+ HelpMessage = "Breakout the default category traffic.")]
+ public SwitchParameter Default { get; set; }
+
+ public override void Execute()
+ {
+ base.Execute();
+ var o365Policy = new PSOffice365PolicyProperties();
+ o365Policy.BreakOutCategories = new PSBreakOutCategoryPolicies();
+ o365Policy.BreakOutCategories.Allow = this.Allow;
+ o365Policy.BreakOutCategories.Optimize = this.Optimize;
+ o365Policy.BreakOutCategories.DefaultProperty = this.Default;
+ WriteObject(o365Policy);
+ }
+ }
+}
diff --git a/src/Network/Network/NetworkVirtualAppliance/Sites/RemoveVirtualApplianceSiteCommand.cs b/src/Network/Network/NetworkVirtualAppliance/Sites/RemoveVirtualApplianceSiteCommand.cs
new file mode 100644
index 000000000000..b0f6f33e6ac3
--- /dev/null
+++ b/src/Network/Network/NetworkVirtualAppliance/Sites/RemoveVirtualApplianceSiteCommand.cs
@@ -0,0 +1,127 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Management.Network;
+using System;
+using System.Collections.Generic;
+using System.Management.Automation;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VirtualApplianceSite", SupportsShouldProcess = true, DefaultParameterSetName = ResourceNameParameterSet), OutputType(typeof(bool))]
+ public class RemoveVirtualApplianceSiteCommand : VirtualApplianceSiteBaseCmdlet
+ {
+ private const string ResourceNameParameterSet = "ResourceNameParameterSet";
+ private const string ResourceIdParameterSet = "ResourceIdParameterSet";
+ private const string ResourceObjectParameterSet = "ResourceObjectParameterSet";
+
+ private string NvaName;
+ [Alias("ResourceName")]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceNameParameterSet,
+ HelpMessage = "The resource name.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceNameParameterSet,
+ HelpMessage = "The resource ID of the Network Virtual Appliance associated with this site.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string NetworkVirtualApplianceId { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceNameParameterSet,
+ HelpMessage = "The resource group name.")]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceGroupName { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceIdParameterSet,
+ HelpMessage = "The resource id.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceId { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceObjectParameterSet,
+ HelpMessage = "The virtual appliance site object.")]
+ [ValidateNotNullOrEmpty]
+ public virtual PSVirtualApplianceSite VirtualApplianceSite { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Do not ask for confirmation.")]
+ public SwitchParameter Force { get; set; }
+
+ [Parameter(Mandatory = false)]
+ public SwitchParameter PassThru { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+ public override void Execute()
+ {
+ base.Execute();
+ if (ParameterSetName.Equals(ResourceIdParameterSet))
+ {
+ this.ResourceGroupName = GetResourceGroup(this.ResourceId);
+ this.NvaName = GetResourceName(this.ResourceId, "Microsoft.Network/networkVirtualAppliances", "virtualApplianceSites");
+ this.Name = GetResourceName(this.ResourceId, "virtualAppliancesites");
+ }
+ else if (ParameterSetName.Equals(ResourceObjectParameterSet))
+ {
+ this.ResourceGroupName = GetResourceGroup(VirtualApplianceSite.Id);
+ this.Name = VirtualApplianceSite.Name;
+ this.NvaName = GetResourceName(VirtualApplianceSite.Id, "Microsoft.Network/networkVirtualAppliances", "virtualApplianceSites");
+ }
+ else
+ {
+ this.NvaName = GetResourceName(NetworkVirtualApplianceId, "Microsoft.Network/networkVirtualAppliances");
+ string nvaRg = GetResourceGroup(NetworkVirtualApplianceId);
+ if (!nvaRg.Equals(this.ResourceGroupName))
+ {
+ throw new Exception("The resource group for Network Virtual Appliance is not same as that of site.");
+ }
+ }
+
+ ConfirmAction(
+ Force.IsPresent,
+ string.Format(Properties.Resources.RemovingResource, Name),
+ Properties.Resources.RemoveResourceMessage,
+ Name,
+ () =>
+ {
+ this.VirtualApplianceSitesClient.Delete(this.ResourceGroupName, this.NvaName, this.Name);
+ if (PassThru)
+ {
+ WriteObject(true);
+ }
+ });
+ }
+ }
+}
diff --git a/src/Network/Network/NetworkVirtualAppliance/Sites/UpdateVirtualApplianceSiteCommand.cs b/src/Network/Network/NetworkVirtualAppliance/Sites/UpdateVirtualApplianceSiteCommand.cs
new file mode 100644
index 000000000000..3a3365e69d22
--- /dev/null
+++ b/src/Network/Network/NetworkVirtualAppliance/Sites/UpdateVirtualApplianceSiteCommand.cs
@@ -0,0 +1,127 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Management.Network;
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Management.Automation;
+using System.Text;
+using MNM = Microsoft.Azure.Management.Network.Models;
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VirtualApplianceSite", SupportsShouldProcess = true), OutputType(typeof(PSVirtualApplianceSite))]
+ public class UpdateVirtualApplianceSiteCommand : VirtualApplianceSiteBaseCmdlet
+ {
+ private const string ResourceNameParameterSet = "ResourceNameParameterSet";
+
+ private string NvaName;
+
+ [Alias("ResourceName")]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceNameParameterSet,
+ HelpMessage = "The resource name.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ ParameterSetName = ResourceNameParameterSet,
+ HelpMessage = "The resource group name.")]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceGroupName { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "Network virtual appliance that this site is attached to.")]
+ [ValidateNotNullOrEmpty]
+ public string NetworkVirtualApplianceId { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The address prefix for the site.")]
+ [ValidateNotNullOrEmpty]
+ public string AddresssPrefix { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "Office 365 breakout policy.")]
+ [ValidateNotNullOrEmpty]
+ public PSOffice365PolicyProperties O365Policy { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "A hashtable which represents resource tags.")]
+ public Hashtable Tag { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Do not ask for confirmation if you want to overwrite a resource")]
+ public SwitchParameter Force { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+
+ public override void Execute()
+ {
+ base.Execute();
+
+ this.NvaName = GetResourceName(NetworkVirtualApplianceId, "Microsoft.Network/networkVirtualAppliances");
+ string nvaRg = GetResourceGroup(NetworkVirtualApplianceId);
+ if (!nvaRg.Equals(this.ResourceGroupName))
+ {
+ throw new Exception("The resource group for Network Virtual Appliance is not same as that of site.");
+ }
+ if(!(this.IsVirtualApplianceSitePresent(this.ResourceGroupName, this.NvaName, this.Name)))
+ {
+ throw new ArgumentException(Properties.Resources.ResourceNotFound);
+ }
+ ConfirmAction(
+ Force.IsPresent,
+ string.Format(Properties.Resources.OverwritingResource, Name),
+ Properties.Resources.CreatingResourceMessage,
+ Name,
+ () =>
+ {
+ var site = UpdateVirtualApplianceSite();
+ WriteObject(site);
+ });
+ }
+
+ private PSVirtualApplianceSite UpdateVirtualApplianceSite()
+ {
+ var psSite = this.GetVirtualApplianceSite(this.ResourceGroupName, this.NvaName, this.Name);
+ psSite.O365Policy = this.O365Policy??psSite.O365Policy;
+ psSite.AddressPrefix = this.AddresssPrefix??psSite.AddressPrefix;
+
+ var siteModel = NetworkResourceManagerProfile.Mapper.Map(psSite);
+ this.VirtualApplianceSitesClient.CreateOrUpdate(this.ResourceGroupName, this.NvaName, this.Name, siteModel);
+
+ var nvaSite = this.GetVirtualApplianceSite(this.ResourceGroupName, this.NvaName, this.Name);
+ return nvaSite;
+ }
+ }
+}
diff --git a/src/Network/Network/NetworkVirtualAppliance/Sites/VirtualApplianceSiteBaseCmdlet.cs b/src/Network/Network/NetworkVirtualAppliance/Sites/VirtualApplianceSiteBaseCmdlet.cs
new file mode 100644
index 000000000000..a7fbb2f5eabd
--- /dev/null
+++ b/src/Network/Network/NetworkVirtualAppliance/Sites/VirtualApplianceSiteBaseCmdlet.cs
@@ -0,0 +1,66 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Management.Network;
+using Microsoft.Azure.Management.Network.Models;
+using System.Net;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ public abstract class VirtualApplianceSiteBaseCmdlet : NetworkBaseCmdlet
+ {
+ public IVirtualApplianceSitesOperations VirtualApplianceSitesClient
+ {
+ get
+ {
+ return NetworkClient.NetworkManagementClient.VirtualApplianceSites;
+ }
+ }
+
+ public bool IsVirtualApplianceSitePresent(string resourceGroupName, string nvaName, string name)
+ {
+ try
+ {
+ GetVirtualApplianceSite(resourceGroupName, nvaName, name);
+ }
+ catch (Microsoft.Rest.Azure.CloudException exception)
+ {
+ if (exception.Response.StatusCode == HttpStatusCode.NotFound)
+ {
+ // Resource is not present
+ return false;
+ }
+
+ throw;
+ }
+
+ return true;
+ }
+
+ public PSVirtualApplianceSite GetVirtualApplianceSite(string resourceGroupName, string nvaName, string name)
+ {
+ var nvaSite = this.VirtualApplianceSitesClient.Get(resourceGroupName, nvaName, name);
+
+ var psSite = NetworkResourceManagerProfile.Mapper.Map(nvaSite);
+ return psSite;
+ }
+ public PSVirtualApplianceSite ToPsVirtualApplianceSite(VirtualApplianceSite nvasite)
+ {
+ var psSite = NetworkResourceManagerProfile.Mapper.Map(nvasite);
+ return psSite;
+ }
+ }
+}
diff --git a/src/Network/Network/NetworkVirtualAppliance/Sku/GetVirtualApplianceSkuCommand.cs b/src/Network/Network/NetworkVirtualAppliance/Sku/GetVirtualApplianceSkuCommand.cs
new file mode 100644
index 000000000000..6e63005f530c
--- /dev/null
+++ b/src/Network/Network/NetworkVirtualAppliance/Sku/GetVirtualApplianceSkuCommand.cs
@@ -0,0 +1,78 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Management.Network;
+using Microsoft.Azure.Management.Network.Models;
+using Microsoft.Rest.Azure;
+using System;
+using System.Collections.Generic;
+using System.Management.Automation;
+using System.Linq;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetworkVirtualApplianceSku"), OutputType(typeof(PSNetworkVirtualApplianceSku))]
+ public class GetVirtualApplianceSkuCommand : VirtualApplianceSkuBaseCmdlet
+ {
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = false,
+ HelpMessage = "The Sku name.",
+ ParameterSetName = "ResourceName")]
+ [ValidateNotNullOrEmpty]
+ public virtual string SkuName { get; set; }
+
+ public override void Execute()
+ {
+ base.Execute();
+ if (ShouldGetByName(this.SkuName))
+ {
+ var sku = this.GetVirtualApplianceSku(this.SkuName);
+ WriteObject(sku);
+ }
+ else
+ {
+ IPage skuPage;
+ skuPage = this.VirtualApplianceSkusClient.List();
+ // Get all resources by polling on next page link
+ var skuList = ListNextLink.GetAllResourcesByPollingNextLink(skuPage, this.VirtualApplianceSkusClient.ListNext);
+ var psSkus = new List();
+ foreach (var sku in skuList)
+ {
+ var psSku = this.ToPsNetworkVirtualApplianceSku(sku);
+ psSkus.Add(psSku);
+ }
+ WriteObject(Filter(this.SkuName, psSkus), true);
+ }
+ }
+
+ private bool ShouldGetByName(string name)
+ {
+ return !string.IsNullOrEmpty(name) && !WildcardPattern.ContainsWildcardCharacters(name);
+ }
+
+ private List Filter(string skuname, List resources)
+ {
+ if (!string.IsNullOrEmpty(skuname))
+ {
+ WildcardPattern pattern = new WildcardPattern(skuname, WildcardOptions.IgnoreCase);
+ var tmp = resources.Where(p => pattern.IsMatch(p.Vendor)).ToList();
+ return tmp;
+ }
+ return resources;
+ }
+ }
+}
diff --git a/src/Network/Network/NetworkVirtualAppliance/Sku/VirtualApplianceSkuBaseCmdlet.cs b/src/Network/Network/NetworkVirtualAppliance/Sku/VirtualApplianceSkuBaseCmdlet.cs
new file mode 100644
index 000000000000..28c08f7c5af5
--- /dev/null
+++ b/src/Network/Network/NetworkVirtualAppliance/Sku/VirtualApplianceSkuBaseCmdlet.cs
@@ -0,0 +1,67 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.Tags;
+using Microsoft.Azure.Management.Network;
+using Microsoft.Azure.Management.Network.Models;
+using System;
+using System.Collections.Generic;
+using System.Net;
+using System.Text;
+namespace Microsoft.Azure.Commands.Network
+{
+ public abstract class VirtualApplianceSkuBaseCmdlet : NetworkBaseCmdlet
+ {
+ public IVirtualApplianceSkusOperations VirtualApplianceSkusClient
+ {
+ get
+ {
+ return NetworkClient.NetworkManagementClient.VirtualApplianceSkus;
+ }
+ }
+
+ public bool IsVirtualApplianceSkuPresent(string name)
+ {
+ try
+ {
+ GetVirtualApplianceSku(name);
+ }
+ catch (Microsoft.Rest.Azure.CloudException exception)
+ {
+ if (exception.Response.StatusCode == HttpStatusCode.NotFound)
+ {
+ // Resource is not present
+ return false;
+ }
+ throw;
+ }
+ return true;
+ }
+
+ public PSNetworkVirtualApplianceSku GetVirtualApplianceSku(string name)
+ {
+ var nvaSku = this.VirtualApplianceSkusClient.Get(name);
+ var psSku = NetworkResourceManagerProfile.Mapper.Map(nvaSku);
+ return psSku;
+ }
+
+ public PSNetworkVirtualApplianceSku ToPsNetworkVirtualApplianceSku(NetworkVirtualApplianceSku nvaSku)
+ {
+ var psSku = NetworkResourceManagerProfile.Mapper.Map(nvaSku);
+ return psSku;
+ }
+ }
+}
diff --git a/src/Network/Network/NetworkVirtualAppliance/SkuProperties/NewVirtualApplianceSkuPropertyCommand.cs b/src/Network/Network/NetworkVirtualAppliance/SkuProperties/NewVirtualApplianceSkuPropertyCommand.cs
new file mode 100644
index 000000000000..5a9a36ec3eff
--- /dev/null
+++ b/src/Network/Network/NetworkVirtualAppliance/SkuProperties/NewVirtualApplianceSkuPropertyCommand.cs
@@ -0,0 +1,57 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.Common.Compute.Version2016_04_preview.Models;
+using Microsoft.Azure.Commands.Network.Models;
+using System;
+using System.Collections.Generic;
+using System.Management.Automation;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VirtualApplianceSkuProperty"), OutputType(typeof(PSVirtualApplianceSkuProperties))]
+ public class NewVirtualApplianceSkuPropertyCommand : VirtualApplianceSkuPropertiesBaseCmdlet
+ {
+ [Alias("Name")]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = false,
+ HelpMessage = "The name of the vendor.")]
+ public virtual string VendorName { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = false,
+ HelpMessage = "The bundled scale unit.")]
+ public virtual string BundledScaleUnit { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = false,
+ HelpMessage = "The market place version.")]
+ public virtual string MarketPlaceVersion { get; set; }
+
+ public override void Execute()
+ {
+ base.Execute();
+ var skuProperties = new PSVirtualApplianceSkuProperties();
+ skuProperties.BundledScaleUnit = this.BundledScaleUnit;
+ skuProperties.MarketPlaceVersion = this.MarketPlaceVersion;
+ skuProperties.Vendor = this.VendorName;
+ WriteObject(skuProperties);
+ }
+ }
+}
diff --git a/src/Network/Network/NetworkVirtualAppliance/SkuProperties/VirtualApplianceSkuPropertiesBaseCmdlet.cs b/src/Network/Network/NetworkVirtualAppliance/SkuProperties/VirtualApplianceSkuPropertiesBaseCmdlet.cs
new file mode 100644
index 000000000000..e215488e5e5d
--- /dev/null
+++ b/src/Network/Network/NetworkVirtualAppliance/SkuProperties/VirtualApplianceSkuPropertiesBaseCmdlet.cs
@@ -0,0 +1,26 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.Network
+{
+ public class VirtualApplianceSkuPropertiesBaseCmdlet : NetworkBaseCmdlet
+ {
+ // Empty class for future development of Get/Set/Update commands.
+ }
+}
diff --git a/src/Network/Network/NetworkVirtualAppliance/UpdateNetworkVirtualApplianceCommand.cs b/src/Network/Network/NetworkVirtualAppliance/UpdateNetworkVirtualApplianceCommand.cs
new file mode 100644
index 000000000000..8c722eeb36fc
--- /dev/null
+++ b/src/Network/Network/NetworkVirtualAppliance/UpdateNetworkVirtualApplianceCommand.cs
@@ -0,0 +1,115 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.Network.Models;
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Commands.ResourceManager.Common.Tags;
+using Microsoft.Azure.Management.Network;
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Management.Automation;
+using System.Text;
+using MNM = Microsoft.Azure.Management.Network.Models;
+namespace Microsoft.Azure.Commands.Network
+{
+ [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetworkVirtualAppliance", SupportsShouldProcess = true), OutputType(typeof(PSNetworkVirtualAppliance))]
+ public class UpdateNetworkVirtualApplianceCommand : NetworkVirtualApplianceBaseCmdlet
+ {
+
+ [Alias("ResourceName")]
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource name.")]
+ [ValidateNotNullOrEmpty]
+ public virtual string Name { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The resource group name.")]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public virtual string ResourceGroupName { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The Sku of the Virtual Appliance.")]
+ [ValidateNotNullOrEmpty]
+ public PSVirtualApplianceSkuProperties Sku { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The ASN number of the Virtual Appliance.")]
+ [ValidateNotNullOrEmpty]
+ public int VirtualApplianceAsn { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "A hashtable which represents resource tags.")]
+ public Hashtable Tag { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Do not ask for confirmation if you want to overwrite a resource")]
+ public SwitchParameter Force { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")]
+ public SwitchParameter AsJob { get; set; }
+
+ public override void Execute()
+ {
+ base.Execute();
+ if(!this.IsNetworkVirtualAppliancePresent(this.ResourceGroupName, this.Name))
+ {
+ throw new ArgumentException(Properties.Resources.ResourceNotFound);
+ }
+ ConfirmAction(
+ Force.IsPresent,
+ string.Format(Properties.Resources.OverwritingResource, Name),
+ Properties.Resources.CreatingResourceMessage,
+ Name,
+ () =>
+ {
+ var nva = UpdateNetworkVirtualAppliance();
+ WriteObject(nva);
+ }
+ );
+ }
+
+ private PSNetworkVirtualAppliance UpdateNetworkVirtualAppliance()
+ {
+ var networkVirtualAppliance = this.GetNetworkVirtualAppliance(this.ResourceGroupName, this.Name);
+ if (this.VirtualApplianceAsn != 0)
+ {
+ networkVirtualAppliance.VirtualApplianceAsn = this.VirtualApplianceAsn;
+ }
+ networkVirtualAppliance.NvaSku = this.Sku??networkVirtualAppliance.NvaSku;
+
+ var networkVirtualApplianceModel = NetworkResourceManagerProfile.Mapper.Map(networkVirtualAppliance);
+
+ networkVirtualApplianceModel.Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true);
+
+ this.NetworkVirtualAppliancesClient.CreateOrUpdate(this.ResourceGroupName, this.Name, networkVirtualApplianceModel);
+
+ var getNetworkVirtualAppliance = this.GetNetworkVirtualAppliance(this.ResourceGroupName, this.Name);
+ return getNetworkVirtualAppliance;
+ }
+ }
+}
diff --git a/src/Network/Network/help/Get-AzNetworkVirtualAppliance.md b/src/Network/Network/help/Get-AzNetworkVirtualAppliance.md
new file mode 100644
index 000000000000..d3525f324f25
--- /dev/null
+++ b/src/Network/Network/help/Get-AzNetworkVirtualAppliance.md
@@ -0,0 +1,134 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
+Module Name: Az.Network
+online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-aznetworkvirtualappliance
+schema: 2.0.0
+---
+
+# Get-AzNetworkVirtualAppliance
+
+## SYNOPSIS
+Get or List Network Virtual Appliances.
+
+## SYNTAX
+
+### ResourceNameParameterSet (Default)
+```
+Get-AzNetworkVirtualAppliance [-Name ] [-ResourceGroupName ]
+ [-DefaultProfile ] []
+```
+
+### ResourceIdParameterSet
+```
+Get-AzNetworkVirtualAppliance -ResourceId [-DefaultProfile ]
+ []
+```
+
+## DESCRIPTION
+The Get-AzNetworkVirtualAppliance commands gets or lists Network Virtual Appliance resources.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Get-AzNetworkVirtualAppliance -ResourceGroupName testrg -Name nva
+
+BootStrapConfigurationBlobs : {}
+VirtualHub : Microsoft.Azure.Commands.Network.Models.PSResourceId
+CloudInitConfigurationBlobs : {}
+CloudInitConfiguration : echo hi
+VirtualApplianceAsn : 1270
+VirtualApplianceNics : {privatenicipconfig, publicnicipconfig, privatenicipconfig, publicnicipconfig}
+VirtualApplianceSites : {}
+ProvisioningState : Succeeded
+Identity :
+NvaSku : Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties
+ResourceGroupName : testrg
+Location : eastus2
+ResourceGuid :
+Type : Microsoft.Network/NetworkVirtualAppliances
+Tag :
+TagsTable :
+Name : nva
+Etag : 00000000-0000-0000-0000-000000000000
+Id : /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/networkVirtualAppliances/nva
+```
+
+Get a Network Virtual Appliance resource.
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Name
+The resource name.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceNameParameterSet
+Aliases: ResourceName
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The resource group name.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceNameParameterSet
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceId
+The resource Id.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceIdParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/Network/Network/help/Get-AzNetworkVirtualApplianceSku.md b/src/Network/Network/help/Get-AzNetworkVirtualApplianceSku.md
new file mode 100644
index 000000000000..c75c0d73c6b8
--- /dev/null
+++ b/src/Network/Network/help/Get-AzNetworkVirtualApplianceSku.md
@@ -0,0 +1,112 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
+Module Name: Az.Network
+online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-aznetworkvirtualappliancesku
+schema: 2.0.0
+---
+
+# Get-AzNetworkVirtualApplianceSku
+
+## SYNOPSIS
+Get or List available Network Virtual Appliance Skus in the inventory.
+
+## SYNTAX
+
+```
+Get-AzNetworkVirtualApplianceSku [-SkuName ] [-DefaultProfile ]
+ []
+```
+
+## DESCRIPTION
+The Get-AzNetworkVirtualApplianceSku gets or lists available Network Virtual Appliance Skus in the Microsoft Azure inventory.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Get-AzNetworkVirtualApplianceSku -SkuName barracudasdwanrelease
+
+Vendor : barracudasdwanrelease
+AvailableVersions : {8.1.0038301, latest}
+AvailableScaleUnits : {Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances, Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances}
+Name : barracudasdwanrelease
+Etag : 00000000-0000-0000-0000-000000000000
+Id :
+```
+
+Get a sku by name.
+
+### Example 2
+```powershell
+PS C:\> Get-AzNetworkVirtualApplianceSku
+
+Vendor : barracuda sdwan nightly
+AvailableVersions : {latest}
+AvailableScaleUnits : {Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances}
+Name : barracuda sdwan nightly
+Etag : 00000000-0000-0000-0000-000000000000
+Id :
+
+Vendor : barracuda sdwan
+AvailableVersions : {latest}
+AvailableScaleUnits : {Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances}
+Name : barracuda sdwan
+Etag : 00000000-0000-0000-0000-000000000000
+Id :
+
+Vendor : barracudasdwanrelease
+AvailableVersions : {8.1.0038301, latest}
+AvailableScaleUnits : {Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances, Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances}
+Name : barracudasdwanrelease
+Etag : 00000000-0000-0000-0000-000000000000
+Id :
+```
+
+List all available Skus of Network Virtual Appliance.
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -SkuName
+The Sku name.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### None
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSku
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/Network/Network/help/Get-AzVirtualApplianceSite.md b/src/Network/Network/help/Get-AzVirtualApplianceSite.md
new file mode 100644
index 000000000000..56002cf49fce
--- /dev/null
+++ b/src/Network/Network/help/Get-AzVirtualApplianceSite.md
@@ -0,0 +1,159 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
+Module Name: Az.Network
+online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-azvirtualappliancesite
+schema: 2.0.0
+---
+
+# Get-AzVirtualApplianceSite
+
+## SYNOPSIS
+Get or List sites connected to Network Virtual Appliance resource(s).
+
+## SYNTAX
+
+### ResourceNameParameterSet (Default)
+```
+Get-AzVirtualApplianceSite [-Name ] [-NetworkVirtualApplianceId ] [-ResourceGroupName ]
+ [-DefaultProfile ] []
+```
+
+### ResourceIdParameterSet
+```
+Get-AzVirtualApplianceSite -ResourceId [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+The Get-AzVirtualApplianceSite gets or lists sites connected to one or more Network Virtual Appliance resources.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Get-AzVirtualApplianceSite -Name testsite -NetworkVirtualApplianceId $nva.Id -ResourceGroupName testrg
+
+
+AddressPrefix : 10.0.1.0/24
+O365Policy : Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties
+ProvisioningState : Succeeded
+Name : testsite
+Etag : 00000000-0000-0000-0000-000000000000
+Id : /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/networkVirtualAppliances/nva/virtualApplianceSites/testsite
+```
+
+Get a Virtual Appliance site resource.
+
+### Example 2
+```powershell
+PS C:\> Get-AzVirtualApplianceSite -NetworkVirtualApplianceId $nva.Id -ResourceGroupName testrg
+
+
+AddressPrefix : 10.0.1.0/24
+O365Policy : Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties
+ProvisioningState : Succeeded
+Name : testsite
+Etag : 00000000-0000-0000-0000-000000000000
+Id : /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/networkVirtualAppliances/nva/virtualApplianceSites/testsite
+
+AddressPrefix : 10.0.2.0/24
+O365Policy : Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties
+ProvisioningState : Succeeded
+Name : testsite2
+Etag : 00000000-0000-0000-0000-000000000000
+Id : /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Network/networkVirtualAppliances/nva/virtualApplianceSites/testsite2
+```
+
+List Virtual Appliance site resources in a Network Virtual Appliance.
+
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Name
+The resource name.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceNameParameterSet
+Aliases: ResourceName
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -NetworkVirtualApplianceId
+The Network Virtual Appliance that the site is attached.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceNameParameterSet
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The resource group name.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceNameParameterSet
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceId
+The resource Id of the Virtual Appliance Site.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceIdParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/Network/Network/help/New-AzNetworkVirtualAppliance.md b/src/Network/Network/help/New-AzNetworkVirtualAppliance.md
new file mode 100644
index 000000000000..7f9504603f7a
--- /dev/null
+++ b/src/Network/Network/help/New-AzNetworkVirtualAppliance.md
@@ -0,0 +1,329 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
+Module Name: Az.Network
+online version: https://docs.microsoft.com/en-us/powershell/module/az.network/new-aznetworkvirtualappliance
+schema: 2.0.0
+---
+
+# New-AzNetworkVirtualAppliance
+
+## SYNOPSIS
+Create a Network Virtual Appliance resource.
+
+## SYNTAX
+
+### ResourceNameParameterSet (Default)
+```
+New-AzNetworkVirtualAppliance -Name -ResourceGroupName -Location
+ -VirtualHubId -Sku -VirtualApplianceAsn
+ [-Identity ] [-BootStrapConfigurationBlob ]
+ [-CloudInitConfigurationBlob ] [-CloudInitConfiguration ] [-Tag ] [-Force]
+ [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### ResourceIdParameterSet
+```
+New-AzNetworkVirtualAppliance -ResourceId -Location -VirtualHubId
+ -Sku -VirtualApplianceAsn [-Identity ]
+ [-BootStrapConfigurationBlob ] [-CloudInitConfigurationBlob ]
+ [-CloudInitConfiguration ] [-Tag ] [-Force] [-AsJob]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+The New-AzNetworkVirtualAppliance command creates a Network Virtual Appliance resource in Azure.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> $sku=New-AzVirtualApplianceSkuProperty -VendorName "barracudasdwanrelease" -BundledScaleUnit 1 -MarketPlaceVersion 'latest'
+PS C:\> $hub=Get-AzVirtualHub -ResourceGroupName testrg -Name hub
+PS C:\> $nva=New-AzNetworkVirtualAppliance -ResourceGroupName testrg -Name nva -Location eastus2 -VirtualApplianceAsn 1270 -VirtualHubId $hub.Id -Sku $sku -CloudInitConfiguration "echo Hello World!"
+
+```
+
+Creates a new Network Virtual Appliance resource in resource group: testrg.
+
+## PARAMETERS
+
+### -AsJob
+Run cmdlet in the background
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -BootStrapConfigurationBlob
+The Bootstrap configuration blob URL.
+
+```yaml
+Type: System.String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -CloudInitConfiguration
+The Cloudinit configuration as plain text.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -CloudInitConfigurationBlob
+The Cloudinit configuration blob storage URL.
+
+```yaml
+Type: System.String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Force
+Do not ask for confirmation if you want to overwrite a resource
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Identity
+The Managed identity.
+
+```yaml
+Type: Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Location
+The public IP address location.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Name
+The resource name.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceNameParameterSet
+Aliases: ResourceName
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The resource group name.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceNameParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceId
+The resource Id.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceIdParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Sku
+The Sku of the Virtual Appliance.
+
+```yaml
+Type: Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Tag
+A hashtable which represents resource tags.
+
+```yaml
+Type: System.Collections.Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -VirtualApplianceAsn
+The ASN number of the Virtual Appliance.
+
+```yaml
+Type: System.Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -VirtualHubId
+The Resource Id of the Virtual Hub.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+### Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties
+
+### System.Int32
+
+### Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity
+
+### System.String[]
+
+### System.Collections.Hashtable
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/Network/Network/help/New-AzOffice365PolicyProperty.md b/src/Network/Network/help/New-AzOffice365PolicyProperty.md
new file mode 100644
index 000000000000..dd0b4f32a7af
--- /dev/null
+++ b/src/Network/Network/help/New-AzOffice365PolicyProperty.md
@@ -0,0 +1,107 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
+Module Name: Az.Network
+online version: https://docs.microsoft.com/en-us/powershell/module/az.network/new-azoffice365policyproperty
+schema: 2.0.0
+---
+
+# New-AzOffice365PolicyProperty
+
+## SYNOPSIS
+Define a new Office 365 traffic breakout policy to be used with a Virtual Appliance site.
+
+## SYNTAX
+
+```
+New-AzOffice365PolicyProperty [-Allow] [-Optimize] [-Default] [-DefaultProfile ]
+ []
+```
+
+## DESCRIPTION
+The New-AzOffice365PolicyProperties command defines an Office 365 breakout policy that is to be used woith a Virtual Appliance site.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> $o365Policy = New-AzOffice365PolicyProperty -Allow -Optimize
+```
+
+Create Office 365 traffic breakout policy object to be used with Virtual Appliance site commands.
+
+## PARAMETERS
+
+### -Allow
+Breakout the allow category traffic.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Default
+Breakout the default category traffic.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Optimize
+Breakout the optimize category traffic.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### None
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/Network/Network/help/New-AzVirtualApplianceSite.md b/src/Network/Network/help/New-AzVirtualApplianceSite.md
new file mode 100644
index 000000000000..8dc182df50fb
--- /dev/null
+++ b/src/Network/Network/help/New-AzVirtualApplianceSite.md
@@ -0,0 +1,243 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
+Module Name: Az.Network
+online version: https://docs.microsoft.com/en-us/powershell/module/az.network/new-azvirtualappliancesite
+schema: 2.0.0
+---
+
+# New-AzVirtualApplianceSite
+
+## SYNOPSIS
+Create a site connected to a Network Virtual Appliance.
+
+## SYNTAX
+
+### ResourceNameParameterSet (Default)
+```
+New-AzVirtualApplianceSite -Name -ResourceGroupName -AddressPrefix
+ -O365Policy -NetworkVirtualApplianceId [-Tag ] [-Force]
+ [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### ResourceIdParameterSet
+```
+New-AzVirtualApplianceSite -ResourceId -AddressPrefix
+ -O365Policy -NetworkVirtualApplianceId [-Tag ] [-Force]
+ [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+The New-AzVirtualApplianceSite command creates a Virtual Appliance site connected to a Network Virtual Appliance resource.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> $nva = Get-AzNetworkVirtualAppliance -ResourceGroupName testrg -Name nva
+PS C:\> $o365Policy = New-AzOffice365PolicyProperty -Allow -Optimize
+PS C:\> $site = New-AzVirtualApplianceSite -ResourceGroupName testrg -Name testsite -NetworkVirtualApplianceId $nva.Id -AddressPrefix 10.0.1.0/24 -O365Policy $o365Policy
+```
+
+Create a new Virtual Appliance site in the resource group: testrg.
+
+## PARAMETERS
+
+### -AddressPrefix
+The address prefix for the site.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -AsJob
+Run cmdlet in the background
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Force
+Do not ask for confirmation if you want to overwrite a resource
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Name
+The resource name.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceNameParameterSet
+Aliases: ResourceName
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -NetworkVirtualApplianceId
+The Network virtual appliance that this site is attached to.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -O365Policy
+The Office 365 breakout policy.
+
+```yaml
+Type: Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The resource group name.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceNameParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceId
+The resource id.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceIdParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Tag
+A hashtable which represents resource tags.
+
+```yaml
+Type: System.Collections.Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+### Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties
+
+### System.Collections.Hashtable
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/Network/Network/help/New-AzVirtualApplianceSkuProperty.md b/src/Network/Network/help/New-AzVirtualApplianceSkuProperty.md
new file mode 100644
index 000000000000..a531e7e4fda6
--- /dev/null
+++ b/src/Network/Network/help/New-AzVirtualApplianceSkuProperty.md
@@ -0,0 +1,107 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
+Module Name: Az.Network
+online version: https://docs.microsoft.com/en-us/powershell/module/az.network/new-azvirtualapplianceskuproperty
+schema: 2.0.0
+---
+
+# New-AzVirtualApplianceSkuProperty
+
+## SYNOPSIS
+Define a Network Virtual Appliance sku for the resource.
+
+## SYNTAX
+
+```
+New-AzVirtualApplianceSkuProperty -VendorName -BundledScaleUnit -MarketPlaceVersion
+ [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+The New-AzVirtualApplianceSkuProperties command defines a Sku for Network Virtual Appliance resource.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> $var=New-AzVirtualApplianceSkuProperty -VendorName "barracudasdwanrelease" -BundledScaleUnit 1 -MarketPlaceVersion 'latest'
+```
+
+Create a Virtual Appliance Sku Properties object to be used with New-AzNetworkVirtualAppliance command.
+
+## PARAMETERS
+
+### -BundledScaleUnit
+The bundled scale unit.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -MarketPlaceVersion
+The market place version.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -VendorName
+The name of the vendor.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases: Name
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### None
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/Network/Network/help/Remove-AzNetworkVirtualAppliance.md b/src/Network/Network/help/Remove-AzNetworkVirtualAppliance.md
new file mode 100644
index 000000000000..9f843e0ce9fb
--- /dev/null
+++ b/src/Network/Network/help/Remove-AzNetworkVirtualAppliance.md
@@ -0,0 +1,213 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
+Module Name: Az.Network
+online version: https://docs.microsoft.com/en-us/powershell/module/az.network/remove-aznetworkvirtualappliance
+schema: 2.0.0
+---
+
+# Remove-AzNetworkVirtualAppliance
+
+## SYNOPSIS
+Remove a Network Virtual Appliance resource.
+
+## SYNTAX
+
+### ResourceNameParameterSet (Default)
+```
+Remove-AzNetworkVirtualAppliance -Name -ResourceGroupName [-Force] [-PassThru] [-AsJob]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### ResourceIdParameterSet
+```
+Remove-AzNetworkVirtualAppliance -ResourceId [-Force] [-PassThru] [-AsJob]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### ResourceObjectParameterSet
+```
+Remove-AzNetworkVirtualAppliance -NetworkVirtualAppliance [-Force] [-PassThru]
+ [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+The Remove-AzNetworkVirtualAppliance command removes a Network Virtual Appliance resource.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Remove-AzNetworkVirtualAppliance -ResourceGroupName testrg -Name nva
+```
+
+Delete a Network Virtual Appliance resource.
+
+## PARAMETERS
+
+### -AsJob
+Run cmdlet in the background
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Force
+Do not ask for confirmation.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Name
+The resource name.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceNameParameterSet
+Aliases: ResourceName
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -NetworkVirtualAppliance
+The resource object.
+
+```yaml
+Type: Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance
+Parameter Sets: ResourceObjectParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -PassThru
+Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The resource group name.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceNameParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceId
+The Resource Id.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceIdParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+### Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance
+
+## OUTPUTS
+
+### System.Boolean
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/Network/Network/help/Remove-AzVirtualApplianceSite.md b/src/Network/Network/help/Remove-AzVirtualApplianceSite.md
new file mode 100644
index 000000000000..ee10ce20bf38
--- /dev/null
+++ b/src/Network/Network/help/Remove-AzVirtualApplianceSite.md
@@ -0,0 +1,229 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
+Module Name: Az.Network
+online version: https://docs.microsoft.com/en-us/powershell/module/az.network/remove-azvirtualappliancesite
+schema: 2.0.0
+---
+
+# Remove-AzVirtualApplianceSite
+
+## SYNOPSIS
+Remove a virtual appliance site from a Network Virtual Appliance resource.
+
+## SYNTAX
+
+### ResourceNameParameterSet (Default)
+```
+Remove-AzVirtualApplianceSite -Name -NetworkVirtualApplianceId -ResourceGroupName
+ [-Force] [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm]
+ []
+```
+
+### ResourceIdParameterSet
+```
+Remove-AzVirtualApplianceSite -ResourceId [-Force] [-PassThru] [-AsJob]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### ResourceObjectParameterSet
+```
+Remove-AzVirtualApplianceSite -VirtualApplianceSite [-Force] [-PassThru] [-AsJob]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+The Remove-AzVirtualApplianceSite command removes a Virtual Appliance site from a Network Virtual Appliance resource.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Remove-AzVirtualApplianceSite -Name testsite -ResourceGroupName testrg -NetworkVirtualApplianceId $nva.Id
+```
+
+Delete a Virtual Appliance site resource.
+
+## PARAMETERS
+
+### -AsJob
+Run cmdlet in the background
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Force
+Do not ask for confirmation.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Name
+The resource name.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceNameParameterSet
+Aliases: ResourceName
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -NetworkVirtualApplianceId
+The resource ID of the Network Virtual Appliance associated with this site.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceNameParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -PassThru
+Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The resource group name.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceNameParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceId
+The resource id.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceIdParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -VirtualApplianceSite
+The virtual appliance site object.
+
+```yaml
+Type: Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite
+Parameter Sets: ResourceObjectParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+### Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite
+
+## OUTPUTS
+
+### System.Boolean
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/Network/Network/help/Update-AzNetworkVirtualAppliance.md b/src/Network/Network/help/Update-AzNetworkVirtualAppliance.md
new file mode 100644
index 000000000000..be07fd4bb622
--- /dev/null
+++ b/src/Network/Network/help/Update-AzNetworkVirtualAppliance.md
@@ -0,0 +1,205 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
+Module Name: Az.Network
+online version: https://docs.microsoft.com/en-us/powershell/module/az.network/update-aznetworkvirtualappliance
+schema: 2.0.0
+---
+
+# Update-AzNetworkVirtualAppliance
+
+## SYNOPSIS
+Update or Change a Network Virtual Appliance resource.
+
+## SYNTAX
+
+```
+Update-AzNetworkVirtualAppliance -Name -ResourceGroupName
+ [-Sku ] [-VirtualApplianceAsn ] [-Tag ] [-Force] [-AsJob]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+The Update-AzNetworkVirtualAppliance modifies a Network Virtual Appliance resource.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Update-AzNetworkVirtualAppliance -ResourceGroupName testrg -Name nva -VirtualApplianceAsn 1234
+```
+
+Modify the Virtual Appliance ASN number.
+
+## PARAMETERS
+
+### -AsJob
+Run cmdlet in the background
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Force
+Do not ask for confirmation if you want to overwrite a resource
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Name
+The resource name.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases: ResourceName
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The resource group name.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Sku
+The Sku of the Virtual Appliance.
+
+```yaml
+Type: Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Tag
+A hashtable which represents resource tags.
+
+```yaml
+Type: System.Collections.Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -VirtualApplianceAsn
+The ASN number of the Virtual Appliance.
+
+```yaml
+Type: System.Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+### Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties
+
+### System.Int32
+
+### System.Collections.Hashtable
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/Network/Network/help/Update-AzVirtualApplianceSite.md b/src/Network/Network/help/Update-AzVirtualApplianceSite.md
new file mode 100644
index 000000000000..7c20da31ac1b
--- /dev/null
+++ b/src/Network/Network/help/Update-AzVirtualApplianceSite.md
@@ -0,0 +1,219 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
+Module Name: Az.Network
+online version: https://docs.microsoft.com/en-us/powershell/module/az.network/update-azvirtualappliancesite
+schema: 2.0.0
+---
+
+# Update-AzVirtualApplianceSite
+
+## SYNOPSIS
+Change or Modify a Virtual Appliance site connected to a Network Virtual Appliance resource.
+
+## SYNTAX
+
+```
+Update-AzVirtualApplianceSite -Name -ResourceGroupName -NetworkVirtualApplianceId
+ [-AddresssPrefix ] [-O365Policy ] [-Tag ] [-Force] [-AsJob]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+The Update-AzVirtualApplianceSite command modifies a Virtual Appliance site resource.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> $nva=Get-AzNetworkVirtualAppliance -ResourceGroupName testrg -Name nva
+PS C:\> Update-AzVirtualApplianceSite -Name testsite -ResourceGroupName testrg -AddresssPrefix 10.0.4.0/24 -NetworkVirtualApplianceId $nva.Id
+```
+
+Modify the address prefix for a Virtual Appliance site resource.
+
+## PARAMETERS
+
+### -AddresssPrefix
+The address prefix for the site.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -AsJob
+Run cmdlet in the background
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Force
+Do not ask for confirmation if you want to overwrite a resource
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Name
+The resource name.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases: ResourceName
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -NetworkVirtualApplianceId
+Network virtual appliance that this site is attached to.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -O365Policy
+Office 365 breakout policy.
+
+```yaml
+Type: Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The resource group name.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Tag
+A hashtable which represents resource tags.
+
+```yaml
+Type: System.Collections.Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+### Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties
+
+### System.Collections.Hashtable
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite
+
+## NOTES
+
+## RELATED LINKS
diff --git a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv
index 46836ea9b48a..31668d27c088 100644
--- a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv
+++ b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv
@@ -356,3 +356,5 @@
"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteCommand","New-AzVHubRoute","1","8100","New-AzVHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand","New-AzFirewallPolicyNatRule","1","8510","Cmdlet 'New-AzFirewallPolicyNatRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute."
"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand","New-AzFirewallPolicyNetworkRule","1","8510","Cmdlet 'New-AzFirewallPolicyNetworkRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute."
+"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewOffice365PolicyPropertyCommand","New-AzOffice365PolicyProperty","1","8100","New-AzOffice365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"
+"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewVirtualApplianceSkuPropertyCommand","New-AzVirtualApplianceSkuProperty","1","8100","New-AzVirtualApplianceSkuProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"