From 5ee4c2300993b91449bf5b6128386816d1ec2fdf Mon Sep 17 00:00:00 2001 From: Jiacheng Zhu Date: Sun, 30 Aug 2020 23:02:50 -0700 Subject: [PATCH 1/2] squash commit --- .../Network.Test/ScenarioTests/CortexTests.cs | 16 + .../ScenarioTests/CortexTests.ps1 | 235 + .../TestVpnConnectionPacketCapture.json | 9546 +++++++++++++++++ .../TestVpnGatewayPacketCapture.json | 7097 ++++++++++++ src/Network/Network/Az.Network.psd1 | 4 + src/Network/Network/ChangeLog.md | 5 + ...tartAzVpnConnectionPacketCaptureCommand.cs | 159 + ...StopAzVpnConnectionPacketCaptureCommand.cs | 154 + .../StartAzVpnGatewayPacketCaptureCommand.cs | 111 + .../StopAzVpnGatewayPacketCaptureCommand.cs | 111 + .../PSVpnConnectionPacketCaptureResult.cs | 25 + .../Cortex/PSVpnGatewayPacketCaptureResult.cs | 22 + .../Start-AzVpnConnectionPacketCapture.md | 264 + .../help/Start-AzVpnGatewayPacketCapture.md | 230 + .../help/Stop-AzVpnConnectionPacketCapture.md | 280 + .../help/Stop-AzVpnGatewayPacketCapture.md | 247 + 16 files changed, 18506 insertions(+) create mode 100644 src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnConnectionPacketCapture.json create mode 100644 src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnGatewayPacketCapture.json create mode 100644 src/Network/Network/Cortex/VpnConnection/StartAzVpnConnectionPacketCaptureCommand.cs create mode 100644 src/Network/Network/Cortex/VpnConnection/StopAzVpnConnectionPacketCaptureCommand.cs create mode 100644 src/Network/Network/Cortex/VpnGateway/StartAzVpnGatewayPacketCaptureCommand.cs create mode 100644 src/Network/Network/Cortex/VpnGateway/StopAzVpnGatewayPacketCaptureCommand.cs create mode 100644 src/Network/Network/Models/Cortex/PSVpnConnectionPacketCaptureResult.cs create mode 100644 src/Network/Network/Models/Cortex/PSVpnGatewayPacketCaptureResult.cs create mode 100644 src/Network/Network/help/Start-AzVpnConnectionPacketCapture.md create mode 100644 src/Network/Network/help/Start-AzVpnGatewayPacketCapture.md create mode 100644 src/Network/Network/help/Stop-AzVpnConnectionPacketCapture.md create mode 100644 src/Network/Network/help/Stop-AzVpnGatewayPacketCapture.md diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.cs b/src/Network/Network.Test/ScenarioTests/CortexTests.cs index 8d8948b46f95..246a9917ce5a 100644 --- a/src/Network/Network.Test/ScenarioTests/CortexTests.cs +++ b/src/Network/Network.Test/ScenarioTests/CortexTests.cs @@ -90,5 +90,21 @@ public void TestVHubRouteTableCRUD() { TestRunner.RunTestScript("Test-VHubRouteTableCRUD"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, NrpTeamAlias.brooklynft)] + public void TestVpnGatewayPacketCapture() + { + TestRunner.RunTestScript("Test-VpnGatewayPacketCapture"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, NrpTeamAlias.brooklynft)] + public void TestVpnConnectionPacketCapture() + { + TestRunner.RunTestScript("Test-VpnConnectionPacketCapture"); + } } } diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 index 090a6cadaa92..293c63a687b7 100644 --- a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 @@ -785,6 +785,241 @@ function Test-CortexExpressRouteCRUD } } +<# +.SYNOPSIS +create a vpn gateway and start packet capture +#> +function Test-VpnGatewayPacketCapture +{ + # Setup + $rgName = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement "West Central US" + $virtualWanName = Get-ResourceName + $virtualHubName = Get-ResourceName + $vpnGatewayName = Get-ResourceName + + try + { + # Create the resource group + $resourceGroup = New-AzResourceGroup -Name $rgName -Location $rglocation + + # Create the Virtual Wan + $createdVirtualWan = New-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName -Location $rglocation -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic + $virtualWan = Get-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName + Assert-AreEqual $rgName $virtualWan.ResourceGroupName + Assert-AreEqual $virtualWanName $virtualWan.Name + Assert-AreEqual $true $virtualWan.AllowVnetToVnetTraffic + Assert-AreEqual $true $virtualWan.AllowBranchToBranchTraffic + + # Create the Virtual Hub + $createdVirtualHub = New-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Location $rglocation -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan + $virtualHub = Get-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName + Assert-AreEqual $rgName $virtualHub.ResourceGroupName + Assert-AreEqual $virtualHubName $virtualHub.Name + Assert-AreEqual "10.0.0.0/16" $virtualHub.AddressPrefix + + # Create the VpnGateway + $createdVpnGateway = New-AzVpnGateway -ResourceGroupName $rgName -Name $vpnGatewayName -VirtualHub $virtualHub -VpnGatewayScaleUnit 3 + Assert-AreEqual $rgName $createdVpnGateway.ResourceGroupName + Assert-AreEqual $vpnGatewayName $createdVpnGateway.Name + Assert-AreEqual 3 $createdVpnGateway.VpnGatewayScaleUnit + + #create SAS URL + if ((Get-NetworkTestMode) -ne 'Playback') + { + $storetype = 'Standard_GRS' + $containerName = "testcontainer" + $storeName = 'sto' + $rgname; + New-AzStorageAccount -ResourceGroupName $rgname -Name $storeName -Location $rglocation -Type $storetype + $key = Get-AzStorageAccountKey -ResourceGroupName $rgname -Name $storeName + $context = New-AzStorageContext -StorageAccountName $storeName -StorageAccountKey $key[0].Value + New-AzStorageContainer -Name $containerName -Context $context + $container = Get-AzStorageContainer -Name $containerName -Context $context + $now=get-date + $sasurl = New-AzStorageContainerSASToken -Name $containerName -Context $context -Permission "rwd" -StartTime $now.AddHours(-1) -ExpiryTime $now.AddDays(1) -FullUri + } + else + { + $sasurl = "https://storage/test123?sp=racwdl&stvigopKcy" + } + + #StartPacketCapture on gateway with Name parameter + $output = Start-AzVpnGatewayPacketCapture -ResourceGroupName $rgname -Name $vpnGatewayName + Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName + Assert-AreEqual $createdVpnGateway.Name $output.Name + Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName + Assert-AreEqual $createdVpnGateway.Location $output.Location + Assert-AreEqual $output.Code "Succeeded" + + #StopPacketCapture on gateway with Name parameter + $output = Stop-AzVpnGatewayPacketCapture -ResourceGroupName $rgname -Name $vpnGatewayName -SasUrl $sasurl + Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName + Assert-AreEqual $createdVpnGateway.Name $output.Name + Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName + Assert-AreEqual $createdVpnGateway.Location $output.Location + Assert-AreEqual $output.Code "Succeeded" + + #StartPacketCapture on gateway object + $a="{`"TracingFlags`":11,`"MaxPacketBufferSize`":120,`"MaxFileSize`":500,`"Filters`":[{`"SourceSubnets`":[`"10.19.0.4/32`",`"10.20.0.4/32`"],`"DestinationSubnets`":[`"10.20.0.4/32`",`"10.19.0.4/32`"],`"IpSubnetValueAsAny`":true,`"TcpFlags`":-1,`"PortValueAsAny`":true,`"CaptureSingleDirectionTrafficOnly`":true}]}" + $output = Start-AzVpnGatewayPacketCapture -InputObject $createdVpnGateway -FilterData $a + Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName + Assert-AreEqual $createdVpnGateway.Name $output.Name + Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName + Assert-AreEqual $createdVpnGateway.Location $output.Location + Assert-AreEqual $output.Code "Succeeded" + + #StopPacketCapture on gateway object + $output = Stop-AzVpnGatewayPacketCapture -InputObject $createdVpnGateway -SasUrl $sasurl + Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName + Assert-AreEqual $createdVpnGateway.Name $output.Name + Assert-AreEqual $createdVpnGateway.ResourceGroupName $output.ResourceGroupName + Assert-AreEqual $createdVpnGateway.Location $output.Location + Assert-AreEqual $output.Code "Succeeded" + + # Delete the resources + $delete = Remove-AzVpnGateway -ResourceGroupName $rgName -Name $vpnGatewayName -Force -PassThru + Assert-AreEqual $True $delete + + $delete = Remove-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Force -PassThru + Assert-AreEqual $True $delete + + $delete = Remove-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName -Force -PassThru + Assert-AreEqual $True $delete + } + finally + { + Clean-ResourceGroup $rgname + } +} + +<# +.SYNOPSIS +CortexCRUD +#> +function Test-VpnConnectionPacketCapture +{ + # Setup + $rgName = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement "East US" + + $virtualWanName = Get-ResourceName + $virtualHubName = Get-ResourceName + $vpnSiteName = Get-ResourceName + $vpnGatewayName = Get-ResourceName + $remoteVirtualNetworkName = Get-ResourceName + $vpnConnectionName = Get-ResourceName + $hubVnetConnectionName = Get-ResourceName + $vpnSiteLink1Name = Get-ResourceName + $vpnSiteLink2Name = Get-ResourceName + $vpnLink1ConnectionName = Get-ResourceName + $vpnLink2ConnectionName = Get-ResourceName + $storeName = 'blob' + $rgName + + try + { + # Create the resource group + $resourceGroup = New-AzResourceGroup -Name $rgName -Location $rglocation + + # Create the Virtual Wan + $createdVirtualWan = New-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName -Location $rglocation -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic + $virtualWan = Get-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName + Assert-AreEqual $rgName $virtualWan.ResourceGroupName + Assert-AreEqual $virtualWanName $virtualWan.Name + + # Create the Virtual Hub + $createdVirtualHub = New-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Location $rglocation -AddressPrefix "192.168.1.0/24" -VirtualWan $virtualWan + $virtualHub = Get-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName + Assert-AreEqual $rgName $virtualHub.ResourceGroupName + Assert-AreEqual $virtualHubName $virtualHub.Name + Assert-AreEqual "192.168.1.0/24" $virtualHub.AddressPrefix + + # Create the VpnSite with Links + $vpnSiteAddressSpaces = New-Object string[] 2 + $vpnSiteAddressSpaces[0] = "192.169.2.0/24" + $vpnSiteAddressSpaces[1] = "192.169.3.0/24" + $vpnSiteLink1 = New-AzVpnSiteLink -Name $vpnSiteLink1Name -IpAddress "5.5.5.5" -LinkProviderName "SomeTelecomProvider1" -LinkSpeedInMbps "10" + $vpnSiteLink2 = New-AzVpnSiteLink -Name $vpnSiteLink2Name -IpAddress "5.5.5.6" -LinkProviderName "SomeTelecomProvider2" -LinkSpeedInMbps "10" + + $createdVpnSite = New-AzVpnSite -ResourceGroupName $rgName -Name $vpnSiteName -Location $rglocation -VirtualWan $virtualWan -AddressSpace $vpnSiteAddressSpaces -DeviceModel "SomeDevice" -DeviceVendor "SomeDeviceVendor" -VpnSiteLink @($vpnSiteLink1, $vpnSiteLink2) + Assert-AreEqual $rgName $createdVpnSite.ResourceGroupName + Assert-AreEqual $vpnSiteName $createdVpnSite.Name + Assert-AreEqual 2 $createdVpnSite.VpnSiteLinks.Count + + # Create the VpnGateway + $createdVpnGateway = New-AzVpnGateway -ResourceGroupName $rgName -Name $vpnGatewayName -VirtualHub $virtualHub -VpnGatewayScaleUnit 3 + Assert-AreEqual $rgName $createdVpnGateway.ResourceGroupName + Assert-AreEqual $vpnGatewayName $createdVpnGateway.Name + Assert-AreEqual 3 $createdVpnGateway.VpnGatewayScaleUnit + + + # Create the VpnConnection with site with links + $vpnSiteLinkConnection1 = New-AzVpnSiteLinkConnection -Name $vpnLink1ConnectionName -VpnSiteLink $createdVpnSite.VpnSiteLinks[0] -ConnectionBandwidth 100 + $vpnSiteLinkConnection2 = New-AzVpnSiteLinkConnection -Name $vpnLink2ConnectionName -VpnSiteLink $createdVpnSite.VpnSiteLinks[1] -ConnectionBandwidth 10 + + $createdVpnConnection = New-AzVpnConnection -ResourceGroupName $rgName -ParentResourceName $vpnGatewayName -Name $vpnConnectionName -VpnSite $createdVpnSite -VpnSiteLinkConnection @($vpnSiteLinkConnection1, $vpnSiteLinkConnection2) + + #create SAS URL + if ((Get-NetworkTestMode) -ne 'Playback') + { + $storetype = 'Standard_GRS' + $containerName = "testcontainer" + $storeName = 'sto2' + $rgname; + New-AzStorageAccount -ResourceGroupName $rgname -Name $storeName -Location $rglocation -Type $storetype + $key = Get-AzStorageAccountKey -ResourceGroupName $rgname -Name $storeName + $context = New-AzStorageContext -StorageAccountName $storeName -StorageAccountKey $key[0].Value + New-AzStorageContainer -Name $containerName -Context $context + $container = Get-AzStorageContainer -Name $containerName -Context $context + $now=get-date + $sasurl = New-AzStorageContainerSASToken -Name $containerName -Context $context -Permission "rwd" -StartTime $now.AddHours(-1) -ExpiryTime $now.AddDays(1) -FullUri + } + else + { + $sasurl = "https://storage/test123?sp=racwdl&stvigopKcy" + } + + $SiteLinkConnections = $vpnSiteLinkConnection1.Name + "," + $vpnSiteLinkConnection2.Name + # StartPacketCapture on VpnConnection with Name parameter + $output = Start-AzVpnConnectionPacketCapture -ResourceGroupName $rgname -Name $vpnConnectionName -ParentResourceName $vpnGatewayName -LinkConnectionName $SiteLinkConnections + Assert-AreEqual $createdVpnConnection.Name $output.Name + Assert-AreEqual $output.Code "Succeeded" + + #StopPacketCapture on VpnConnection with Name parameter + $output = Stop-AzVpnConnectionPacketCapture -ResourceGroupName $rgname -Name $vpnConnectionName -ParentResourceName $vpnGatewayName -SasUrl $sasurl -LinkConnectionName $SiteLinkConnections + Assert-AreEqual $createdVpnConnection.Name $output.Name + Assert-AreEqual $output.Code "Succeeded" + + #StartPacketCapture on gateway object with filterData + $a="{`"TracingFlags`":11,`"MaxPacketBufferSize`":120,`"MaxFileSize`":500,`"Filters`":[{`"SourceSubnets`":[`"10.19.0.4/32`",`"10.20.0.4/32`"],`"DestinationSubnets`":[`"10.20.0.4/32`",`"10.19.0.4/32`"],`"IpSubnetValueAsAny`":true,`"TcpFlags`":-1,`"PortValueAsAny`":true,`"CaptureSingleDirectionTrafficOnly`":true}]}" + $output = Start-AzVpnConnectionPacketCapture -InputObject $createdVpnConnection -FilterData $a -LinkConnectionName $SiteLinkConnections + Assert-AreEqual $createdVpnConnection.Name $output.Name + Assert-AreEqual $output.Code "Succeeded" + + #StopPacketCapture on gateway object + $output = Stop-AzVpnConnectionPacketCapture -InputObject $createdVpnConnection -SasUrl $sasurl -LinkConnectionName $SiteLinkConnections + Assert-AreEqual $createdVpnConnection.Name $output.Name + Assert-AreEqual $output.Code "Succeeded" + + $delete = Remove-AzVpnConnection -ResourceGroupName $rgName -ParentResourceName $vpnGatewayName -Name $vpnConnectionName -Force -PassThru + Assert-AreEqual $True $delete + + $delete = Remove-AzVpnGateway -ResourceGroupName $rgName -Name $vpnGatewayName -Force -PassThru + Assert-AreEqual $True $delete + + $delete = Remove-AzVpnSite -ResourceGroupName $rgName -Name $vpnSiteName -Force -PassThru + Assert-AreEqual $True $delete + + $delete = Remove-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Force -PassThru + Assert-AreEqual $True $delete + + $delete = Remove-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName -Force -PassThru + Assert-AreEqual $True $delete + } + finally + { + Clean-ResourceGroup $rgname + } +} + <# .SYNOPSIS Disconnect site to site vpn gateway BgpSettings diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnConnectionPacketCapture.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnConnectionPacketCapture.json new file mode 100644 index 000000000000..066e12208c07 --- /dev/null +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnConnectionPacketCapture.json @@ -0,0 +1,9546 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourcegroups/ps571?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlZ3JvdXBzL3BzNTcxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc0e9bb9-38dc-4e33-8212-0e2979a108ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "6cf86fd2-97cc-41d1-aa37-128902e37b1e" + ], + "x-ms-correlation-request-id": [ + "6cf86fd2-97cc-41d1-aa37-128902e37b1e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T234839Z:6cf86fd2-97cc-41d1-aa37-128902e37b1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:48:39 GMT" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571\",\r\n \"name\": \"ps571\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97b71e52-85f4-4e03-b04a-aeb397166cca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "37441cd7-ee88-489e-b307-d3f8056adafa" + ], + "x-ms-correlation-request-id": [ + "37441cd7-ee88-489e-b307-d3f8056adafa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T234840Z:37441cd7-ee88-489e-b307-d3f8056adafa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:48:39 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/ps1450' under resource group 'ps571' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\"" + ], + "x-ms-request-id": [ + "7cac4801-cffd-412f-8cf0-be9f6578971e" + ], + "x-ms-correlation-request-id": [ + "7d0bd03a-741e-47cc-b9b1-347a769b3f8c" + ], + "x-ms-arm-service-request-id": [ + "3d8d6100-af8b-45d3-b8b6-0b3760411654" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T234854Z:7d0bd03a-741e-47cc-b9b1-347a769b3f8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:48:53 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1450\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\",\r\n \"etag\": \"W/\\\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ebe7f642-ef82-49a6-8d37-faa8c0aa5de8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\"" + ], + "x-ms-request-id": [ + "f79aa026-0fd4-4f77-ac20-820d87bf5126" + ], + "x-ms-correlation-request-id": [ + "95d6d524-7d0d-4971-8a72-674907315e67" + ], + "x-ms-arm-service-request-id": [ + "0d4aadd1-7a2f-4d04-a3cf-6e35425dd6d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T234854Z:95d6d524-7d0d-4971-8a72-674907315e67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:48:53 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1450\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\",\r\n \"etag\": \"W/\\\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a1a80a8-1973-40cc-853b-435b703b38e7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\"" + ], + "x-ms-request-id": [ + "64a137eb-5d09-48c8-ae06-bb20dccd6ed0" + ], + "x-ms-correlation-request-id": [ + "f42a47c7-559a-4842-803d-465dc1cea0f2" + ], + "x-ms-arm-service-request-id": [ + "11ebc947-2267-46ca-a390-8592f6151478" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T234854Z:f42a47c7-559a-4842-803d-465dc1cea0f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:48:54 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1450\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\",\r\n \"etag\": \"W/\\\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31cfa67b-2895-4318-8052-cf1e8d7f39f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\"" + ], + "x-ms-request-id": [ + "0ac2cfe6-4872-49d0-92dd-0b4b71d13c51" + ], + "x-ms-correlation-request-id": [ + "52a7f28f-a49d-48b9-961f-e5113fbb2db2" + ], + "x-ms-arm-service-request-id": [ + "be1351f2-cfab-4526-a76d-a8517ea3cf9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T234855Z:52a7f28f-a49d-48b9-961f-e5113fbb2db2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:48:54 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1450\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\",\r\n \"etag\": \"W/\\\"d4602c9b-6c35-4c0f-84e4-1b105e47e99e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1e12f09-3745-4ba7-bf6e-dcd1f83986ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"9a2b86b0-d8c9-4ba9-8a47-6bdfa42c86b1\"" + ], + "x-ms-request-id": [ + "1dab8803-5ff3-40d7-8f2d-459bb2ce64dd" + ], + "x-ms-correlation-request-id": [ + "7a061a64-aee8-4b8e-936a-503e650a679c" + ], + "x-ms-arm-service-request-id": [ + "7880253f-db08-4557-94cf-de0d8ed25bc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235620Z:7a061a64-aee8-4b8e-936a-503e650a679c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:56:20 GMT" + ], + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1450\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\",\r\n \"etag\": \"W/\\\"9a2b86b0-d8c9-4ba9-8a47-6bdfa42c86b1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\",\r\n \"virtualHubs\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"allowBranchToBranchTraffic\": true,\r\n \"allowVnetToVnetTraffic\": true,\r\n \"type\": \"Standard\"\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c28180ba-2183-45e0-b8ff-5ec2ae311541" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "156" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ef8024d6-8cd8-4f5b-84ac-ee80be019efb" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/ef8024d6-8cd8-4f5b-84ac-ee80be019efb?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "0be3a7ab-8aef-421a-922f-6052cd5af110" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "a8357053-fd6b-416b-ad38-159683daeaac" + ], + "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": [ + "WESTUS2:20200819T234843Z:0be3a7ab-8aef-421a-922f-6052cd5af110" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:48:43 GMT" + ], + "Content-Length": [ + "493" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1450\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\",\r\n \"etag\": \"W/\\\"a6567797-5b2d-41ab-820c-1bd1fbfb3a0d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/ef8024d6-8cd8-4f5b-84ac-ee80be019efb?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZWY4MDI0ZDYtOGNkOC00ZjViLTg0YWMtZWU4MGJlMDE5ZWZiP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dd5ed875-623f-4ae8-85f8-50174c9aadd7" + ], + "x-ms-correlation-request-id": [ + "1562fc65-4efd-4ca6-9c99-812db5ca99be" + ], + "x-ms-arm-service-request-id": [ + "a3a60f3b-da13-459f-867b-3011e8b435c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T234854Z:1562fc65-4efd-4ca6-9c99-812db5ca99be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:48:53 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e5baa01-2510-4495-81c7-4880bbafbf62" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6950e672-ad17-47bf-b510-4b6172595293" + ], + "x-ms-correlation-request-id": [ + "6950e672-ad17-47bf-b510-4b6172595293" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T234855Z:6950e672-ad17-47bf-b510-4b6172595293" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:48:54 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/virtualHubs/ps8475' under resource group 'ps571' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ca7cd896-f842-405d-abba-7898ecf916a2" + ], + "x-ms-correlation-request-id": [ + "b7b46bd0-793b-44bd-a141-197aedd3230b" + ], + "x-ms-arm-service-request-id": [ + "e62c50a1-7e7f-4307-95e0-02eeaf481c50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235620Z:b7b46bd0-793b-44bd-a141-197aedd3230b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:56:19 GMT" + ], + "Content-Length": [ + "752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8475\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\",\r\n \"etag\": \"W/\\\"f36c5273-2972-4a07-a560-b87d75afed53\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03656db7-9ec6-4f56-9ea6-da138daad699" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3cafbe58-2280-484d-bfd4-05b84b8a5d73" + ], + "x-ms-correlation-request-id": [ + "8fd8361d-e76f-4400-8b76-2c0215f7a34b" + ], + "x-ms-arm-service-request-id": [ + "cade8d74-1e42-4c3a-a6e4-24c5aa118f3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235620Z:8fd8361d-e76f-4400-8b76-2c0215f7a34b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:56:20 GMT" + ], + "Content-Length": [ + "752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8475\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\",\r\n \"etag\": \"W/\\\"f36c5273-2972-4a07-a560-b87d75afed53\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d775f061-cdb9-4b9b-837f-2b0526f40b5f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4abc64b1-0250-46c5-abd2-46be4702d75c" + ], + "x-ms-correlation-request-id": [ + "e9acb1f7-5d77-4c63-a282-ff0c45690426" + ], + "x-ms-arm-service-request-id": [ + "50f646ee-58a8-4d88-a713-09306fe08629" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235634Z:e9acb1f7-5d77-4c63-a282-ff0c45690426" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:56:33 GMT" + ], + "Content-Length": [ + "752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8475\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\",\r\n \"etag\": \"W/\\\"f36c5273-2972-4a07-a560-b87d75afed53\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"sku\": \"Standard\",\r\n \"virtualRouterIps\": []\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7583afeb-06d8-494e-98b6-7eed6b4670e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "346" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a0a5c665-a63a-41bb-bd25-3f80c5174954" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "57852963-2884-4764-b7a9-1d3e9140b2fb" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "70a95a79-2743-409b-a0c5-64014165fa43" + ], + "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": [ + "WESTUS2:20200819T234858Z:57852963-2884-4764-b7a9-1d3e9140b2fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:48:57 GMT" + ], + "Content-Length": [ + "743" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8475\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\",\r\n \"etag\": \"W/\\\"08494b16-15ff-43c5-a7c6-e82b812bd373\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "39db6709-4467-4f51-8af2-52f4181fda5c" + ], + "x-ms-correlation-request-id": [ + "a5876875-266a-42bf-978a-f11b9198e75c" + ], + "x-ms-arm-service-request-id": [ + "fd3fcd94-442f-4a25-8f65-f45008af5412" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T234908Z:a5876875-266a-42bf-978a-f11b9198e75c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:49: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "77bda342-1557-427f-bcd4-4ad12157a7b9" + ], + "x-ms-correlation-request-id": [ + "57a6cfeb-887a-4500-bd23-bdbfacae2305" + ], + "x-ms-arm-service-request-id": [ + "2b6a556b-1bbe-42b1-a0a7-bb88d462bfc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T234918Z:57a6cfeb-887a-4500-bd23-bdbfacae2305" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:49: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "edd60aa3-ee5a-4b91-ab84-ddbc4cf527f2" + ], + "x-ms-correlation-request-id": [ + "a33edb76-d124-4318-8b59-221afaeecb64" + ], + "x-ms-arm-service-request-id": [ + "f229c30d-8f7b-411b-b42e-8626e665580b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T234938Z:a33edb76-d124-4318-8b59-221afaeecb64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:49: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "3351b74d-77b8-4dfa-b87b-582967d1b8d9" + ], + "x-ms-correlation-request-id": [ + "a8361cc3-3abf-4f31-887d-27a8900e9737" + ], + "x-ms-arm-service-request-id": [ + "59fa1827-90b3-4def-b6ed-28c878a9eb7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T234958Z:a8361cc3-3abf-4f31-887d-27a8900e9737" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:49: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "8a43e401-7661-4786-b54d-f54cd863a98d" + ], + "x-ms-correlation-request-id": [ + "b2c0e322-5ba4-427c-8e6b-78eac151db28" + ], + "x-ms-arm-service-request-id": [ + "3e5b8190-4854-4dbe-bed9-6ea1902154d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235038Z:b2c0e322-5ba4-427c-8e6b-78eac151db28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:50: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "75179373-20a2-4729-b07a-fceb8999a312" + ], + "x-ms-correlation-request-id": [ + "a0cfb3d9-719e-48b3-8f64-2a59d8206b06" + ], + "x-ms-arm-service-request-id": [ + "7dd0df1f-02be-40ab-9ae1-68d14a8ebfe9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235118Z:a0cfb3d9-719e-48b3-8f64-2a59d8206b06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "8de14135-2089-4833-a2b5-4dff38b5a1c4" + ], + "x-ms-correlation-request-id": [ + "b3ca087b-cefd-40a9-9d17-2cba09763e76" + ], + "x-ms-arm-service-request-id": [ + "fb1bf700-f689-448b-bef1-6e557e7f9b2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235259Z:b3ca087b-cefd-40a9-9d17-2cba09763e76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:52: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "f7dd9000-9c51-4b32-b490-d262cb489491" + ], + "x-ms-correlation-request-id": [ + "0a99ca50-cd78-44de-919c-731218783d39" + ], + "x-ms-arm-service-request-id": [ + "f18e6c32-f461-4aac-a955-7652ed44abd0" + ], + "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": [ + "WESTUS2:20200819T235439Z:0a99ca50-cd78-44de-919c-731218783d39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:54: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a0a5c665-a63a-41bb-bd25-3f80c5174954?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBhNWM2NjUtYTYzYS00MWJiLWJkMjUtM2Y4MGM1MTc0OTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b2a2e6e-effb-4731-a972-685325ef6acb" + ], + "x-ms-correlation-request-id": [ + "6191f549-20a3-4873-b478-c8affd0b115b" + ], + "x-ms-arm-service-request-id": [ + "794c1836-4e5a-4893-940b-68065bf144fd" + ], + "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": [ + "WESTUS2:20200819T235619Z:6191f549-20a3-4873-b478-c8affd0b115b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:56:19 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubVirtualNetworkConnections?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzUvaHViVmlydHVhbE5ldHdvcmtDb25uZWN0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3be2502d-93ac-4ecb-9280-58fd84a8117f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "71389760-4a1c-4a23-b77a-684ca31c8572" + ], + "x-ms-correlation-request-id": [ + "92ad74d5-e805-4fc6-ae1f-b0167bead8bc" + ], + "x-ms-arm-service-request-id": [ + "b41a7cca-3c42-44d6-b5d7-694338d844e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235620Z:92ad74d5-e805-4fc6-ae1f-b0167bead8bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:56:19 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubVirtualNetworkConnections?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzUvaHViVmlydHVhbE5ldHdvcmtDb25uZWN0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "edd7f11e-a3d3-41ae-8863-418cfa36c62a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3728ffcf-edd1-4c30-9c7b-f0a036e968e5" + ], + "x-ms-correlation-request-id": [ + "04e94e6a-64a7-46da-b5cc-bdfdf444ddd4" + ], + "x-ms-arm-service-request-id": [ + "4ff7692e-7996-4bf3-930e-7819e03462b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235634Z:04e94e6a-64a7-46da-b5cc-bdfdf444ddd4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:56:34 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5TaXRlcy9wczE1MjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e5c7f76-8a9a-497c-b103-15d583686f74" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "be8c71aa-3581-4d32-ba30-f23bc1af3d5c" + ], + "x-ms-correlation-request-id": [ + "be8c71aa-3581-4d32-ba30-f23bc1af3d5c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235620Z:be8c71aa-3581-4d32-ba30-f23bc1af3d5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:56:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "210" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/vpnSites/ps1520' under resource group 'ps571' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5TaXRlcy9wczE1MjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"6f7bfecb-1a01-4163-80ae-2d08bccdbc53\"" + ], + "x-ms-request-id": [ + "15fcbaf8-5e1a-4123-b3b0-7c99d738e487" + ], + "x-ms-correlation-request-id": [ + "ae107758-b478-4d0f-aed5-27a1e94e8e19" + ], + "x-ms-arm-service-request-id": [ + "c50fc8a5-17bf-47c3-a962-ec7fcffee77a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235633Z:ae107758-b478-4d0f-aed5-27a1e94e8e19" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:56:33 GMT" + ], + "Content-Length": [ + "2020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1520\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\",\r\n \"etag\": \"W/\\\"6f7bfecb-1a01-4163-80ae-2d08bccdbc53\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.169.2.0/24\",\r\n \"192.169.3.0/24\"\r\n ]\r\n },\r\n \"deviceProperties\": {\r\n \"deviceModel\": \"SomeDevice\",\r\n \"deviceVendor\": \"SomeDeviceVendor\",\r\n \"linkSpeedInMbps\": 0\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"isSecuritySite\": false,\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"ps1039\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\",\r\n \"etag\": \"W/\\\"6f7bfecb-1a01-4163-80ae-2d08bccdbc53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipAddress\": \"5.5.5.5\",\r\n \"fqdn\": \"\",\r\n \"linkProperties\": {\r\n \"linkProviderName\": \"SomeTelecomProvider1\",\r\n \"linkSpeedInMbps\": 10\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": \"ps35\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\",\r\n \"etag\": \"W/\\\"6f7bfecb-1a01-4163-80ae-2d08bccdbc53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipAddress\": \"5.5.5.6\",\r\n \"fqdn\": \"\",\r\n \"linkProperties\": {\r\n \"linkProviderName\": \"SomeTelecomProvider2\",\r\n \"linkSpeedInMbps\": 10\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5TaXRlcy9wczE1MjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"deviceProperties\": {\r\n \"deviceVendor\": \"SomeDeviceVendor\",\r\n \"deviceModel\": \"SomeDevice\",\r\n \"linkSpeedInMbps\": 0\r\n },\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.169.2.0/24\",\r\n \"192.169.3.0/24\"\r\n ]\r\n },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"properties\": {\r\n \"linkProperties\": {\r\n \"linkProviderName\": \"SomeTelecomProvider1\",\r\n \"linkSpeedInMbps\": 10\r\n },\r\n \"ipAddress\": \"5.5.5.5\",\r\n \"fqdn\": \"\"\r\n },\r\n \"name\": \"ps1039\"\r\n },\r\n {\r\n \"properties\": {\r\n \"linkProperties\": {\r\n \"linkProviderName\": \"SomeTelecomProvider2\",\r\n \"linkSpeedInMbps\": 10\r\n },\r\n \"ipAddress\": \"5.5.5.6\",\r\n \"fqdn\": \"\"\r\n },\r\n \"name\": \"ps35\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "588571e9-0d66-43c5-a889-85906dfba9b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1060" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8ecab6e0-5ad8-4133-afd9-3e9b9e92a728" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/8ecab6e0-5ad8-4133-afd9-3e9b9e92a728?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "dfd2b385-0952-4e12-b584-6e805509ff2b" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "0e4b5300-1336-4731-bbd7-25a355702552" + ], + "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": [ + "WESTUS2:20200819T235623Z:dfd2b385-0952-4e12-b584-6e805509ff2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:56:22 GMT" + ], + "Content-Length": [ + "2017" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps1520\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\",\r\n \"etag\": \"W/\\\"1f59df95-9fa2-4659-9e62-9c92a1607c2e\\\"\",\r\n \"type\": \"Microsoft.Network/vpnSites\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.169.2.0/24\",\r\n \"192.169.3.0/24\"\r\n ]\r\n },\r\n \"deviceProperties\": {\r\n \"deviceModel\": \"SomeDevice\",\r\n \"deviceVendor\": \"SomeDeviceVendor\",\r\n \"linkSpeedInMbps\": 0\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450\"\r\n },\r\n \"isSecuritySite\": false,\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"ps1039\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\",\r\n \"etag\": \"W/\\\"1f59df95-9fa2-4659-9e62-9c92a1607c2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ipAddress\": \"5.5.5.5\",\r\n \"fqdn\": \"\",\r\n \"linkProperties\": {\r\n \"linkProviderName\": \"SomeTelecomProvider1\",\r\n \"linkSpeedInMbps\": 10\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": \"ps35\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\",\r\n \"etag\": \"W/\\\"1f59df95-9fa2-4659-9e62-9c92a1607c2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ipAddress\": \"5.5.5.6\",\r\n \"fqdn\": \"\",\r\n \"linkProperties\": {\r\n \"linkProviderName\": \"SomeTelecomProvider2\",\r\n \"linkSpeedInMbps\": 10\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/8ecab6e0-5ad8-4133-afd9-3e9b9e92a728?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGVjYWI2ZTAtNWFkOC00MTMzLWFmZDktM2U5YjllOTJhNzI4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ebe0a0ab-1a27-450f-bf61-100c3b31414e" + ], + "x-ms-correlation-request-id": [ + "1cda2ca7-cbec-4c5d-9b7c-ed06a85f496b" + ], + "x-ms-arm-service-request-id": [ + "016231eb-9024-4406-926d-693bfb16a29e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235633Z:1cda2ca7-cbec-4c5d-9b7c-ed06a85f496b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:56:33 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "419e3907-9f3d-447d-897e-652d128cc414" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4178505c-7851-44be-97f5-a7c11fd75b1f" + ], + "x-ms-correlation-request-id": [ + "4178505c-7851-44be-97f5-a7c11fd75b1f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235634Z:4178505c-7851-44be-97f5-a7c11fd75b1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:56:33 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/vpnGateways/ps5630' under resource group 'ps571' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d505291c-1da4-441c-89be-4a7223150b62" + ], + "x-ms-correlation-request-id": [ + "08225c65-88ad-4fcc-bb04-aebec5d6b5bc" + ], + "x-ms-arm-service-request-id": [ + "bef1f039-f62f-4220-a03a-01d0ee24f1ff" + ], + "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": [ + "WESTUS2:20200820T002222Z:08225c65-88ad-4fcc-bb04-aebec5d6b5bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:22:22 GMT" + ], + "Content-Length": [ + "1612" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"bca701d6-3806-44d3-b891-f26f84c97bfd\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcdad544-b715-4836-901a-b39852bb84a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "330f8b7d-39df-436f-a527-c1b2d82bcb12" + ], + "x-ms-correlation-request-id": [ + "7a5c7f31-205c-4db0-80cb-d0272d289171" + ], + "x-ms-arm-service-request-id": [ + "211b26e7-5c41-474e-b24d-890d0b9a00ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T002222Z:7a5c7f31-205c-4db0-80cb-d0272d289171" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:22:22 GMT" + ], + "Content-Length": [ + "1612" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"bca701d6-3806-44d3-b891-f26f84c97bfd\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "696a9710-95ac-468c-9252-669e06a38f98" + ], + "x-ms-correlation-request-id": [ + "79e4b92f-596b-48e8-9a27-1c20654e4376" + ], + "x-ms-arm-service-request-id": [ + "857222b0-46d3-4231-813e-a287bacbe25e" + ], + "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": [ + "WESTUS2:20200820T003025Z:79e4b92f-596b-48e8-9a27-1c20654e4376" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:30:24 GMT" + ], + "Content-Length": [ + "5706" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f989b622-b6ab-49a9-abee-d29ad9b0b86d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ff39d1aa-c742-411a-ab4a-1c346c34d0fc" + ], + "x-ms-correlation-request-id": [ + "2ea78d2a-c326-462a-a2fa-2a9eca021e39" + ], + "x-ms-arm-service-request-id": [ + "286ae7f4-52ba-4989-904f-e492c94a95bb" + ], + "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": [ + "WESTUS2:20200820T003025Z:2ea78d2a-c326-462a-a2fa-2a9eca021e39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:30:24 GMT" + ], + "Content-Length": [ + "5706" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02eb7ffe-f8c3-4619-b167-2f5b2b28f4ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "66f6db33-0ec9-47da-8f72-50d9adea6e8b" + ], + "x-ms-correlation-request-id": [ + "26cba492-6246-4652-a4a8-0e000d718d6f" + ], + "x-ms-arm-service-request-id": [ + "62981e63-41cc-4300-a804-323993a6b48b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003047Z:26cba492-6246-4652-a4a8-0e000d718d6f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:30:47 GMT" + ], + "Content-Length": [ + "5706" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"7f2f98b6-1e24-4043-9fd6-d7d7f77ef2de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5afe9712-f55a-44fb-8355-aa92e42a59fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fb1bcb84-77ea-4336-a383-fe2fc7064559" + ], + "x-ms-correlation-request-id": [ + "3e024da9-5876-4afe-99c4-603575c121ed" + ], + "x-ms-arm-service-request-id": [ + "7d49ec95-00f8-4d61-ba29-b1c94c6d39ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003108Z:3e024da9-5876-4afe-99c4-603575c121ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:31:08 GMT" + ], + "Content-Length": [ + "5712" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"c1defab5-e369-4445-a880-5279fe3fb6bf\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"c1defab5-e369-4445-a880-5279fe3fb6bf\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"c1defab5-e369-4445-a880-5279fe3fb6bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"Running\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"c1defab5-e369-4445-a880-5279fe3fb6bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"Running\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0bd94bb-d26b-48d2-968a-5a172766b35c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd31e5d9-7b25-44a6-b335-72138d825501" + ], + "x-ms-correlation-request-id": [ + "8034c57f-887b-4f2f-adf8-0e8e20d7ed27" + ], + "x-ms-arm-service-request-id": [ + "43aa2e52-d06d-4cdf-aad6-833a4938ba47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003410Z:8034c57f-887b-4f2f-adf8-0e8e20d7ed27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:34:09 GMT" + ], + "Content-Length": [ + "5706" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"27484f03-6707-471f-bc69-32907147f08d\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"27484f03-6707-471f-bc69-32907147f08d\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"27484f03-6707-471f-bc69-32907147f08d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"27484f03-6707-471f-bc69-32907147f08d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "061e0668-573d-45cd-aa6b-beb922e2e2c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8e8f5ea5-4189-4c41-ba66-12be64aa2dcc" + ], + "x-ms-correlation-request-id": [ + "fa3c688b-d989-414c-b203-bdc6ee081e78" + ], + "x-ms-arm-service-request-id": [ + "5bd4ad63-376c-44ba-aecd-53701c9a6f9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003431Z:fa3c688b-d989-414c-b203-bdc6ee081e78" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:34:31 GMT" + ], + "Content-Length": [ + "5712" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"f89762b9-fff8-41a0-bd68-bf9b22c4fa4b\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"f89762b9-fff8-41a0-bd68-bf9b22c4fa4b\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"f89762b9-fff8-41a0-bd68-bf9b22c4fa4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"Running\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"f89762b9-fff8-41a0-bd68-bf9b22c4fa4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"Running\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcbc1764-ddaa-4d3f-9782-9e7fc4b31a18" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5c3f4488-9eb2-47ad-95ba-76e7ee0cedfc" + ], + "x-ms-correlation-request-id": [ + "04af8ca4-85fa-4bbb-a00c-b6d0045b73e3" + ], + "x-ms-arm-service-request-id": [ + "4b2ee9b7-ccb6-4d93-898c-4b4cb37c2e14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003732Z:04af8ca4-85fa-4bbb-a00c-b6d0045b73e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:37:31 GMT" + ], + "Content-Length": [ + "5706" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"2951b57f-ae3e-4b9f-aa54-7cc3d984d755\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"2951b57f-ae3e-4b9f-aa54-7cc3d984d755\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"2951b57f-ae3e-4b9f-aa54-7cc3d984d755\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"2951b57f-ae3e-4b9f-aa54-7cc3d984d755\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bd0a6efd-08ca-4521-b263-133301542e18" + ], + "x-ms-correlation-request-id": [ + "2bfae00a-f50b-455a-be71-1a70ed190fba" + ], + "x-ms-arm-service-request-id": [ + "b5873dcc-760a-4eda-a38d-2cba2e982a4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T004034Z:2bfae00a-f50b-455a-be71-1a70ed190fba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:40:33 GMT" + ], + "Content-Length": [ + "1612" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"03ce0408-9c11-40f6-a757-4894aaa498e4\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"connections\": [],\r\n \"vpnGatewayScaleUnit\": 3\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59a380b3-7a67-491d-a3b3-ff1d2343b474" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "271" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "87e9a76b-d85a-4507-aa5c-53ab69e99a91" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "a9101197-59de-43aa-a99a-eacd36ea361b" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "b772c88c-35ec-4e2b-9491-0b6e4f265491" + ], + "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": [ + "WESTUS2:20200819T235637Z:a9101197-59de-43aa-a99a-eacd36ea361b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:56:37 GMT" + ], + "Content-Length": [ + "711" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"627aa5e2-5d2a-48ba-879c-cc54c5164a6b\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"connections\": [\r\n {\r\n \"properties\": {\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"connectionBandwidth\": 0,\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"enableInternetSecurity\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"vpnLinkConnections\": [\r\n {\r\n \"properties\": {\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"routingWeight\": 0,\r\n \"connectionBandwidth\": 100,\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"useLocalAzureIpAddress\": false\r\n },\r\n \"name\": \"ps5584\"\r\n },\r\n {\r\n \"properties\": {\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"routingWeight\": 0,\r\n \"connectionBandwidth\": 10,\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [],\r\n \"useLocalAzureIpAddress\": false\r\n },\r\n \"name\": \"ps1645\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps8868\"\r\n }\r\n ],\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"customBgpIpAddresses\": []\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"customBgpIpAddresses\": []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3\r\n },\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3f443d8-f8dd-45b1-8476-6616501c76de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2471" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a85604a9-a785-4e28-8b79-2e031596a38c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "11648888-2fd2-4659-a554-6fded20c0ade" + ], + "x-ms-arm-service-request-id": [ + "13b9a64a-7197-42b8-a373-fdec5ddc31c2" + ], + "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": [ + "WESTUS2:20200820T002223Z:11648888-2fd2-4659-a554-6fded20c0ade" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:22:23 GMT" + ], + "Content-Length": [ + "5702" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"1ae31320-2983-4596-828b-efe64f052953\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [\r\n {\r\n \"name\": \"ps8868\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868\",\r\n \"etag\": \"W/\\\"1ae31320-2983-4596-828b-efe64f052953\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n \"default\"\r\n ],\r\n \"ids\": [\r\n {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475/hubRouteTables/defaultRouteTable\"\r\n }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520\"\r\n },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"ps5584\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps5584\",\r\n \"etag\": \"W/\\\"1ae31320-2983-4596-828b-efe64f052953\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps1039\"\r\n },\r\n \"connectionBandwidth\": 100,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n {\r\n \"name\": \"ps1645\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/vpnLinkConnections/ps1645\",\r\n \"etag\": \"W/\\\"1ae31320-2983-4596-828b-efe64f052953\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520/vpnSiteLinks/ps35\"\r\n },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": 0\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"connections\": [],\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"customBgpIpAddresses\": []\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"customBgpIpAddresses\": []\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3\r\n },\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f35900d0-7830-4ec4-af9a-80fcfa9eccfa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "730" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "92b2b88a-e699-44f3-b58d-75a4c4598de1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/92b2b88a-e699-44f3-b58d-75a4c4598de1?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "346be396-e804-4b59-ac46-0392515d30ee" + ], + "x-ms-arm-service-request-id": [ + "fafa284a-a372-42ee-bd39-193df601ec7f" + ], + "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": [ + "WESTUS2:20200820T003733Z:346be396-e804-4b59-ac46-0392515d30ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:37:33 GMT" + ], + "Content-Length": [ + "1611" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5630\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630\",\r\n \"etag\": \"W/\\\"637d43ca-94ec-4036-9b44-b0da6cbb24d2\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.226.139.26\",\r\n \"192.168.1.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"192.168.1.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.224.150.236\",\r\n \"192.168.1.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.226.139.26\",\r\n \"privateIpAddress\": \"192.168.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.224.150.236\",\r\n \"privateIpAddress\": \"192.168.1.5\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "263289ee-a14b-4152-b391-f26d5de307d8" + ], + "x-ms-correlation-request-id": [ + "d9056d29-bc5e-46c8-b773-505e3ef3e254" + ], + "x-ms-arm-service-request-id": [ + "2a0f98c1-f715-4683-9993-61508b30dc0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235648Z:d9056d29-bc5e-46c8-b773-505e3ef3e254" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:56: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "8224153b-2bdd-4aed-b6c4-9fb516d2c470" + ], + "x-ms-correlation-request-id": [ + "caa9ea0e-b256-456e-bfa4-d4efaab68642" + ], + "x-ms-arm-service-request-id": [ + "6477993d-c5aa-4e49-8758-fae7004fdacf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235658Z:caa9ea0e-b256-456e-bfa4-d4efaab68642" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:56: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "9d490b2c-6388-412b-b913-506baeca7568" + ], + "x-ms-correlation-request-id": [ + "0fde4c39-6ca9-42b3-99c0-2782908a334e" + ], + "x-ms-arm-service-request-id": [ + "5849ae4c-de20-4fbd-9715-21dabcd1139a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235718Z:0fde4c39-6ca9-42b3-99c0-2782908a334e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:57: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "0c807264-4bdb-4eaa-b72c-1612aedb8e53" + ], + "x-ms-correlation-request-id": [ + "f3e32172-246b-4993-9e5e-c9abbc659e6f" + ], + "x-ms-arm-service-request-id": [ + "8d2cdf4f-6456-4034-be97-b0808ed965ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235738Z:f3e32172-246b-4993-9e5e-c9abbc659e6f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:57: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "1fed2344-f2d3-4024-95fe-63ad40da0438" + ], + "x-ms-correlation-request-id": [ + "ac61dcbc-5e95-4c0b-b7a9-b7878468e3c6" + ], + "x-ms-arm-service-request-id": [ + "733aa2cc-e7d5-47c1-afa9-524883b7af75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235818Z:ac61dcbc-5e95-4c0b-b7a9-b7878468e3c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:58: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "3f25717f-cbec-4634-9230-310d4d8d678c" + ], + "x-ms-correlation-request-id": [ + "2c5d26d0-164d-4250-809d-9f6309ca3547" + ], + "x-ms-arm-service-request-id": [ + "fdc3b5a8-e06c-4709-b09b-93496084ed74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T235858Z:2c5d26d0-164d-4250-809d-9f6309ca3547" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 23:58: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "ca06582c-9931-409d-b09b-c48d7f6c8eb1" + ], + "x-ms-correlation-request-id": [ + "63e0f9a2-ef70-458a-a1ff-9f3119f582e3" + ], + "x-ms-arm-service-request-id": [ + "a0445b5e-177d-4797-9e43-7078abac3ea6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T000038Z:63e0f9a2-ef70-458a-a1ff-9f3119f582e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:00: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "33fbd598-40f8-4623-ae73-7d11c6505b57" + ], + "x-ms-correlation-request-id": [ + "22fe6e91-b77f-433f-b8de-87f648834bf3" + ], + "x-ms-arm-service-request-id": [ + "707d3e14-1911-4fcf-b89d-6b492a0ba914" + ], + "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": [ + "WESTUS2:20200820T000219Z:22fe6e91-b77f-433f-b8de-87f648834bf3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:02: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "d9f8706d-f740-4ed5-a912-bde8d20db31d" + ], + "x-ms-correlation-request-id": [ + "9403e306-5c1c-4765-a911-b759e25e04bb" + ], + "x-ms-arm-service-request-id": [ + "12f3a0d2-dd9a-4718-b2c6-cf5d0528b9a0" + ], + "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": [ + "WESTUS2:20200820T000359Z:9403e306-5c1c-4765-a911-b759e25e04bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:03: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "9cd6c753-0f5e-4f2c-970e-449915d6263a" + ], + "x-ms-correlation-request-id": [ + "ab01f01f-0a67-45aa-b857-4cd2d3f084db" + ], + "x-ms-arm-service-request-id": [ + "16f09d13-ebb0-40f1-810b-e660b8f9a9ad" + ], + "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": [ + "WESTUS2:20200820T000539Z:ab01f01f-0a67-45aa-b857-4cd2d3f084db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:05: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "84c1034f-55ed-4340-b9c3-7a565930bbce" + ], + "x-ms-correlation-request-id": [ + "d352089d-e366-4b27-be6c-b1d5ec8a0a84" + ], + "x-ms-arm-service-request-id": [ + "a32d9bc7-2de2-4c27-9606-656e0b7b4267" + ], + "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": [ + "WESTUS2:20200820T000719Z:d352089d-e366-4b27-be6c-b1d5ec8a0a84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:07: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "c7857f25-0947-4913-8d34-dbac0f749ed4" + ], + "x-ms-correlation-request-id": [ + "eb95de12-5c1b-4c3e-95ab-f0391caef562" + ], + "x-ms-arm-service-request-id": [ + "cb1b3468-ee10-46f1-9cbb-61db0a03c1bd" + ], + "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": [ + "WESTUS2:20200820T000859Z:eb95de12-5c1b-4c3e-95ab-f0391caef562" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:08: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "eaf9194f-6f02-440f-98c4-83d3be4607fd" + ], + "x-ms-correlation-request-id": [ + "40e75c87-2e8a-467b-ac2a-abab729c68a6" + ], + "x-ms-arm-service-request-id": [ + "ad03b647-b9fa-42d5-948f-a5af20b1bc03" + ], + "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": [ + "WESTUS2:20200820T001040Z:40e75c87-2e8a-467b-ac2a-abab729c68a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:10: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "85cd1381-ba4d-42c6-94ef-e8bc55870ea9" + ], + "x-ms-correlation-request-id": [ + "97846369-f6cf-443e-b30c-058954e5c624" + ], + "x-ms-arm-service-request-id": [ + "a5fc5e26-9b29-4d66-aae9-5b9119787344" + ], + "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": [ + "WESTUS2:20200820T001220Z:97846369-f6cf-443e-b30c-058954e5c624" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:12:20 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "55888af8-d9f2-487b-b5ad-7410b47f4571" + ], + "x-ms-correlation-request-id": [ + "3fc662b2-38e0-4142-a3fb-aebf8ede00b0" + ], + "x-ms-arm-service-request-id": [ + "bd9f1df7-1a4d-4214-b6aa-4f0d88d7bbf2" + ], + "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": [ + "WESTUS2:20200820T001400Z:3fc662b2-38e0-4142-a3fb-aebf8ede00b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:13: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "da01d9ca-fdcd-460e-99c0-8544a3e71bd0" + ], + "x-ms-correlation-request-id": [ + "e12d1628-afd5-4327-ad8b-19492d90366e" + ], + "x-ms-arm-service-request-id": [ + "389a2199-de24-4991-89f0-5e05ebc4369b" + ], + "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": [ + "WESTUS2:20200820T001540Z:e12d1628-afd5-4327-ad8b-19492d90366e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:15: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "f74b8dcb-8b0d-44c8-8b2a-1d7543c939ca" + ], + "x-ms-correlation-request-id": [ + "04875aad-90a3-4844-8c49-3d1583645afb" + ], + "x-ms-arm-service-request-id": [ + "bbda4e41-e2a9-45ae-9cc0-f64860143362" + ], + "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": [ + "WESTUS2:20200820T001721Z:04875aad-90a3-4844-8c49-3d1583645afb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:17: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "5543960e-fba0-4d0b-bc2f-ea969a428cb9" + ], + "x-ms-correlation-request-id": [ + "1ed976f9-add4-4a43-880f-decd72d625cc" + ], + "x-ms-arm-service-request-id": [ + "99b11890-efdd-458d-b210-aeb5376dbcc4" + ], + "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": [ + "WESTUS2:20200820T001901Z:1ed976f9-add4-4a43-880f-decd72d625cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:19: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "0e637bfa-d5fd-4fea-bed3-14d2d1800b12" + ], + "x-ms-correlation-request-id": [ + "930630e9-01c6-4b2d-adb8-50ad18562806" + ], + "x-ms-arm-service-request-id": [ + "0d56f68b-201f-485f-b46b-f82a1d740f84" + ], + "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": [ + "WESTUS2:20200820T002041Z:930630e9-01c6-4b2d-adb8-50ad18562806" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:20: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/87e9a76b-d85a-4507-aa5c-53ab69e99a91?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODdlOWE3NmItZDg1YS00NTA3LWFhNWMtNTNhYjY5ZTk5YTkxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "52c692cb-11e1-498d-ae25-9dff03f49827" + ], + "x-ms-correlation-request-id": [ + "f3f12980-45f5-4007-9a81-0dd909ba861a" + ], + "x-ms-arm-service-request-id": [ + "319ae01a-958c-4911-a0b9-1cd740ab82b7" + ], + "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": [ + "WESTUS2:20200820T002222Z:f3f12980-45f5-4007-9a81-0dd909ba861a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:22:22 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzAvdnBuQ29ubmVjdGlvbnMvcHM4ODY4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf4f5141-edbe-43f0-9048-43ced680f47d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f3172feb-2807-4d5d-89c9-d6096572b180" + ], + "x-ms-correlation-request-id": [ + "4a922a28-eeef-4ca8-83db-3d0cf711f47a" + ], + "x-ms-arm-service-request-id": [ + "f81284c8-3bc9-4f6b-8988-1c620f43ff01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T002222Z:4a922a28-eeef-4ca8-83db-3d0cf711f47a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:22:22 GMT" + ], + "Content-Length": [ + "248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868 not found.\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "69256b2f-e93b-4eb3-8674-d407fefa0d8c" + ], + "x-ms-correlation-request-id": [ + "7ffd0078-f0a4-4333-933f-6bd93c40186b" + ], + "x-ms-arm-service-request-id": [ + "e6348a35-68be-44b6-9544-19f20f247bb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T002233Z:7ffd0078-f0a4-4333-933f-6bd93c40186b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:22:33 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "8250fe75-bc9f-43c6-8123-27363b458ca4" + ], + "x-ms-correlation-request-id": [ + "5e64bc0b-bb2f-43cd-b048-bb09ccf4510d" + ], + "x-ms-arm-service-request-id": [ + "225dcfdd-6553-41d3-a3be-7dbcf536ed99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T002243Z:5e64bc0b-bb2f-43cd-b048-bb09ccf4510d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:22:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "69f64175-7eee-4800-a5d0-777c6b89aef8" + ], + "x-ms-correlation-request-id": [ + "a7d205e3-0f66-45a1-aedb-3bca62c479c8" + ], + "x-ms-arm-service-request-id": [ + "2c1255d8-0b3f-476f-b454-7fcb31c9f6ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T002304Z:a7d205e3-0f66-45a1-aedb-3bca62c479c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:23:03 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "99698d79-b637-4ff8-9948-f3498e70a1ec" + ], + "x-ms-correlation-request-id": [ + "eeafbfd8-daec-4f44-9a4c-4114e628a99e" + ], + "x-ms-arm-service-request-id": [ + "6441b7f8-26e0-4ff4-9443-017846f28b91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T002344Z:eeafbfd8-daec-4f44-9a4c-4114e628a99e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:23:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "beb14f86-6a27-4d71-9589-dfa676fc36fc" + ], + "x-ms-correlation-request-id": [ + "fda4e830-b3fe-4f67-8647-35f182878f87" + ], + "x-ms-arm-service-request-id": [ + "61ff7dec-1019-41c2-87b7-013f7d16325c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T002524Z:fda4e830-b3fe-4f67-8647-35f182878f87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:25: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "f2cc61a2-6842-4ffa-b92a-e5b469fae107" + ], + "x-ms-correlation-request-id": [ + "4b2d1eda-d165-4594-8615-46ce11318117" + ], + "x-ms-arm-service-request-id": [ + "d8f3211d-4857-454a-8700-ff27a9758c0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T002704Z:4b2d1eda-d165-4594-8615-46ce11318117" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:27: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "9f5c14fa-e358-4d3f-96fd-5338fd8aa340" + ], + "x-ms-correlation-request-id": [ + "a861ddd9-90c3-4001-bf35-be7aa2d42299" + ], + "x-ms-arm-service-request-id": [ + "800a0eaa-8355-4568-98ae-b5f4d709ec2e" + ], + "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": [ + "WESTUS2:20200820T002844Z:a861ddd9-90c3-4001-bf35-be7aa2d42299" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:28: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/a85604a9-a785-4e28-8b79-2e031596a38c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTg1NjA0YTktYTc4NS00ZTI4LThiNzktMmUwMzE1OTZhMzhjP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5087acd7-90db-4d32-b747-e8bdd982dd9b" + ], + "x-ms-correlation-request-id": [ + "90c46533-e9ce-4944-9675-67e13a87a056" + ], + "x-ms-arm-service-request-id": [ + "00471041-d41a-41da-bf6d-e4950d2c51e8" + ], + "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": [ + "WESTUS2:20200820T003025Z:90c46533-e9ce-4944-9675-67e13a87a056" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:30:24 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"sto2ps571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4acb7c8-577d-40ee-911e-656551a421b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "75" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d8dc2a12-bac7-4627-8a1f-3d8026e6207b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "6ece756e-f837-400b-9855-d0349c7f8748" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003025Z:6ece756e-f837-400b-9855-d0349c7f8748" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:30:25 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Storage/storageAccounts/sto2ps571?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvMnBzNTcxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2641001f-fedc-49a2-8a33-4cc9a55d948c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Storage/locations/eastus/asyncoperations/f70ac371-74f4-42da-9eba-61da3503ebee?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "f70ac371-74f4-42da-9eba-61da3503ebee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "9576a6a0-d3dc-4775-a77e-012541b6d08b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003029Z:9576a6a0-d3dc-4775-a77e-012541b6d08b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:30:29 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Storage/locations/eastus/asyncoperations/f70ac371-74f4-42da-9eba-61da3503ebee?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy9mNzBhYzM3MS03NGY0LTQyZGEtOWViYS02MWRhMzUwM2ViZWU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7515915d-2c8f-4e1c-8081-20fe4182d354" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "0705c5f4-481b-494d-88b9-3069f44d03c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003046Z:0705c5f4-481b-494d-88b9-3069f44d03c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:30:46 GMT" + ], + "Content-Length": [ + "1262" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Storage/storageAccounts/sto2ps571\",\r\n \"name\": \"sto2ps571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-20T00:30:28.7799048Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-20T00:30:28.7799048Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-20T00:30:28.6861929Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://sto2ps571.dfs.core.windows.net/\",\r\n \"web\": \"https://sto2ps571.z13.web.core.windows.net/\",\r\n \"blob\": \"https://sto2ps571.blob.core.windows.net/\",\r\n \"queue\": \"https://sto2ps571.queue.core.windows.net/\",\r\n \"table\": \"https://sto2ps571.table.core.windows.net/\",\r\n \"file\": \"https://sto2ps571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Storage/storageAccounts/sto2ps571?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvMnBzNTcxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b413946-9e66-4b32-8d06-bfdaace93874" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "42182b62-537f-4bc2-8ce5-bc4e5148ecef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "0cb6821b-a364-4e9c-9f51-0cd8d39758c1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003046Z:0cb6821b-a364-4e9c-9f51-0cd8d39758c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:30:46 GMT" + ], + "Content-Length": [ + "1262" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Storage/storageAccounts/sto2ps571\",\r\n \"name\": \"sto2ps571\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-20T00:30:28.7799048Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-20T00:30:28.7799048Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-20T00:30:28.6861929Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://sto2ps571.dfs.core.windows.net/\",\r\n \"web\": \"https://sto2ps571.z13.web.core.windows.net/\",\r\n \"blob\": \"https://sto2ps571.blob.core.windows.net/\",\r\n \"queue\": \"https://sto2ps571.queue.core.windows.net/\",\r\n \"table\": \"https://sto2ps571.table.core.windows.net/\",\r\n \"file\": \"https://sto2ps571.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Storage/storageAccounts/sto2ps571/listKeys?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvMnBzNTcxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0691dc4-e236-4115-9bd3-f4b1be84c944" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4e192d4b-6b3d-4288-aaf7-1589525aa2c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0a54f81e-b987-4899-a9d5-930735396b72" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003046Z:0a54f81e-b987-4899-a9d5-930735396b72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:30:46 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"btU5iTqNjO3PYBklkKjbelYQb/Waz/HhAWzWsLJsekAidTmJFKofOBnANODBPh3BQOQ7JXt3mmFigyUpP7XihA==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"HG7AkLiYzVNrJyO5FtZSklsAw/UQNnbgYZsihi6pHp8eZS7z92HJPcgDYvrcqfcIdOF2cPKxUwLCbR0Dm5rP6A==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/startpacketcapture?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzAvdnBuQ29ubmVjdGlvbnMvcHM4ODY4L3N0YXJ0cGFja2V0Y2FwdHVyZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"linkConnectionNames\": [\r\n \"ps5584\",\r\n \"ps1645\"\r\n ]\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9d19f58-ba27-4830-b8d1-1cfdffc252a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "66" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/12d34d03-d28b-4280-95e2-6f9cbc827c1f?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "12d34d03-d28b-4280-95e2-6f9cbc827c1f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/12d34d03-d28b-4280-95e2-6f9cbc827c1f?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "fc5aae70-8ea9-4c89-966a-5fbfd7ecc062" + ], + "x-ms-arm-service-request-id": [ + "0073204a-c258-4291-bcd8-20f36f6f6a0a" + ], + "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": [ + "WESTUS2:20200820T003048Z:fc5aae70-8ea9-4c89-966a-5fbfd7ecc062" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:30:47 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/startpacketcapture?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzAvdnBuQ29ubmVjdGlvbnMvcHM4ODY4L3N0YXJ0cGFja2V0Y2FwdHVyZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"filterData\": \"{\\\"TracingFlags\\\":11,\\\"MaxPacketBufferSize\\\":120,\\\"MaxFileSize\\\":500,\\\"Filters\\\":[{\\\"SourceSubnets\\\":[\\\"10.19.0.4/32\\\",\\\"10.20.0.4/32\\\"],\\\"DestinationSubnets\\\":[\\\"10.20.0.4/32\\\",\\\"10.19.0.4/32\\\"],\\\"IpSubnetValueAsAny\\\":true,\\\"TcpFlags\\\":-1,\\\"PortValueAsAny\\\":true,\\\"CaptureSingleDirectionTrafficOnly\\\":true}]}\",\r\n \"linkConnectionNames\": [\r\n \"ps5584\",\r\n \"ps1645\"\r\n ]\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb65a733-39b7-46a0-b9c5-9c5d324e7352" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "396" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/0ee6080f-b4b3-4763-93cc-d752efe25c45?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0ee6080f-b4b3-4763-93cc-d752efe25c45" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/0ee6080f-b4b3-4763-93cc-d752efe25c45?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "29fe05d2-7090-4d2f-8198-82e6984b2760" + ], + "x-ms-arm-service-request-id": [ + "20f12159-d7e3-4b75-804d-4958d20d9044" + ], + "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": [ + "WESTUS2:20200820T003410Z:29fe05d2-7090-4d2f-8198-82e6984b2760" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:34:09 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/12d34d03-d28b-4280-95e2-6f9cbc827c1f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTJkMzRkMDMtZDI4Yi00MjgwLTk1ZTItNmY5Y2JjODI3YzFmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "23de5e5b-b297-4027-94bb-ca81d1cbfecd" + ], + "x-ms-correlation-request-id": [ + "6cc1b700-2412-430c-8386-5811aa2a15e7" + ], + "x-ms-arm-service-request-id": [ + "dc2daee5-8304-43fe-8d51-7746c06dbe15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003058Z:6cc1b700-2412-430c-8386-5811aa2a15e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:30: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/12d34d03-d28b-4280-95e2-6f9cbc827c1f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTJkMzRkMDMtZDI4Yi00MjgwLTk1ZTItNmY5Y2JjODI3YzFmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3e8bc0f6-1359-4e7b-ab6c-d89936ad2374" + ], + "x-ms-correlation-request-id": [ + "c39ab30d-1429-43f3-9c3b-81e9fc04ac25" + ], + "x-ms-arm-service-request-id": [ + "02ffdbac-44bf-455e-b46b-d400b0957130" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003108Z:c39ab30d-1429-43f3-9c3b-81e9fc04ac25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:31:07 GMT" + ], + "Content-Length": [ + "50" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/12d34d03-d28b-4280-95e2-6f9cbc827c1f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvMTJkMzRkMDMtZDI4Yi00MjgwLTk1ZTItNmY5Y2JjODI3YzFmP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/12d34d03-d28b-4280-95e2-6f9cbc827c1f?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "12d34d03-d28b-4280-95e2-6f9cbc827c1f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/12d34d03-d28b-4280-95e2-6f9cbc827c1f?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "fc5aae70-8ea9-4c89-966a-5fbfd7ecc062" + ], + "x-ms-arm-service-request-id": [ + "0073204a-c258-4291-bcd8-20f36f6f6a0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003108Z:d87e5be7-6756-48d9-9b4c-3eea48c7c96f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:31:07 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/stoppacketcapture?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzAvdnBuQ29ubmVjdGlvbnMvcHM4ODY4L3N0b3BwYWNrZXRjYXB0dXJlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "POST", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"sasUrl\": \"https://sto2ps571.blob.core.windows.net/testcontainer?sv=2019-02-02&sr=c&sig=HgRFkJ%2F2pt33KafhzZHy59fuPdTzSo3QJdoRJccd%2BNQ%3D&st=2020-08-19T23%3A30%3A50Z&se=2020-08-21T00%3A30%3A50Z&sp=rwd\",\r\n \"linkConnectionNames\": [\r\n \"ps5584\",\r\n \"ps1645\"\r\n ]\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17d1f4b5-8dc2-430b-8855-cb0a9ab770b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "273" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dc793075-f5db-4d90-8250-a7a95a78c931" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "d6d617d3-18e7-49aa-b844-1f357a84ac2b" + ], + "x-ms-arm-service-request-id": [ + "1c80439f-68f8-49d0-8a0a-b6f5f689f742" + ], + "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": [ + "WESTUS2:20200820T003109Z:d6d617d3-18e7-49aa-b844-1f357a84ac2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:31:09 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630/vpnConnections/ps8868/stoppacketcapture?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzAvdnBuQ29ubmVjdGlvbnMvcHM4ODY4L3N0b3BwYWNrZXRjYXB0dXJlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "POST", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"sasUrl\": \"https://sto2ps571.blob.core.windows.net/testcontainer?sv=2019-02-02&sr=c&sig=HgRFkJ%2F2pt33KafhzZHy59fuPdTzSo3QJdoRJccd%2BNQ%3D&st=2020-08-19T23%3A30%3A50Z&se=2020-08-21T00%3A30%3A50Z&sp=rwd\",\r\n \"linkConnectionNames\": [\r\n \"ps5584\",\r\n \"ps1645\"\r\n ]\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a626ac0-4e10-4167-aeae-b88522ff9c33" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "273" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f5b72063-f8fe-4192-9feb-729e2cc30a77" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "df723cb0-ab0c-4bd7-b2c4-1968191a9db0" + ], + "x-ms-arm-service-request-id": [ + "acd19e29-ed42-4168-8800-44d5209c5a23" + ], + "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": [ + "WESTUS2:20200820T003431Z:df723cb0-ab0c-4bd7-b2c4-1968191a9db0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:34:31 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGM3OTMwNzUtZjVkYi00ZDkwLTgyNTAtYTdhOTVhNzhjOTMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d9ab6fb7-b975-47a5-956f-aed3b4c30bf3" + ], + "x-ms-correlation-request-id": [ + "d5490f77-05e3-4562-9552-931dccbd51ed" + ], + "x-ms-arm-service-request-id": [ + "1ae9d311-3278-4d7f-95a4-0014e348b0e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003119Z:d5490f77-05e3-4562-9552-931dccbd51ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:31: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGM3OTMwNzUtZjVkYi00ZDkwLTgyNTAtYTdhOTVhNzhjOTMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "88aea355-bd70-4b3b-8ba2-34b4b5114f8a" + ], + "x-ms-correlation-request-id": [ + "99bbe34c-a2c5-4fc3-bb21-be870bcb12c3" + ], + "x-ms-arm-service-request-id": [ + "d2010ebd-f701-47f7-b9fc-2cf2a29aa25c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003129Z:99bbe34c-a2c5-4fc3-bb21-be870bcb12c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:31:28 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGM3OTMwNzUtZjVkYi00ZDkwLTgyNTAtYTdhOTVhNzhjOTMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "1f151311-bb86-4a62-840e-e8adcc284e7d" + ], + "x-ms-correlation-request-id": [ + "affd7ed9-a2f6-4302-8af5-be3433c68e1f" + ], + "x-ms-arm-service-request-id": [ + "f53890db-285a-47db-8d3b-85f9d04d9000" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003149Z:affd7ed9-a2f6-4302-8af5-be3433c68e1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:31:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGM3OTMwNzUtZjVkYi00ZDkwLTgyNTAtYTdhOTVhNzhjOTMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "8a396ebe-4d3a-41c9-aedd-bd067ec8be40" + ], + "x-ms-correlation-request-id": [ + "c454b387-9a94-4622-b03f-6d43a2870231" + ], + "x-ms-arm-service-request-id": [ + "432506c0-f4a6-4e38-9e5c-698a8bd32fcd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003229Z:c454b387-9a94-4622-b03f-6d43a2870231" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:32: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGM3OTMwNzUtZjVkYi00ZDkwLTgyNTAtYTdhOTVhNzhjOTMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5b6df033-9040-4314-be1a-8ecab0a76e49" + ], + "x-ms-correlation-request-id": [ + "4a668b17-6501-49e8-9009-56f2c3ed4798" + ], + "x-ms-arm-service-request-id": [ + "76f7bfed-062d-456a-b7f4-30042bb58612" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003409Z:4a668b17-6501-49e8-9009-56f2c3ed4798" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:34:09 GMT" + ], + "Content-Length": [ + "50" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvZGM3OTMwNzUtZjVkYi00ZDkwLTgyNTAtYTdhOTVhNzhjOTMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "dc793075-f5db-4d90-8250-a7a95a78c931" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/dc793075-f5db-4d90-8250-a7a95a78c931?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "d6d617d3-18e7-49aa-b844-1f357a84ac2b" + ], + "x-ms-arm-service-request-id": [ + "1c80439f-68f8-49d0-8a0a-b6f5f689f742" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003410Z:2a258920-6d42-4665-9b99-6b13eff4012b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:34:09 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/0ee6080f-b4b3-4763-93cc-d752efe25c45?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMGVlNjA4MGYtYjRiMy00NzYzLTkzY2MtZDc1MmVmZTI1YzQ1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6402719e-e5aa-4cf5-8726-314121cb5b56" + ], + "x-ms-correlation-request-id": [ + "63b3598f-a7dd-4ed5-8404-e975609187c5" + ], + "x-ms-arm-service-request-id": [ + "48c9020a-1a26-46dc-8c7e-4199f6815d01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003420Z:63b3598f-a7dd-4ed5-8404-e975609187c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:34: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/0ee6080f-b4b3-4763-93cc-d752efe25c45?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMGVlNjA4MGYtYjRiMy00NzYzLTkzY2MtZDc1MmVmZTI1YzQ1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f25aa5cc-10b9-4f4a-a11e-8cdd036eaa93" + ], + "x-ms-correlation-request-id": [ + "d2f1604c-9bcd-4d40-8537-ccb90e2eb35f" + ], + "x-ms-arm-service-request-id": [ + "318d76a1-8d82-4dae-beb8-18f8e9970dd1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003430Z:d2f1604c-9bcd-4d40-8537-ccb90e2eb35f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:34:29 GMT" + ], + "Content-Length": [ + "50" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/0ee6080f-b4b3-4763-93cc-d752efe25c45?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvMGVlNjA4MGYtYjRiMy00NzYzLTkzY2MtZDc1MmVmZTI1YzQ1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/0ee6080f-b4b3-4763-93cc-d752efe25c45?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "0ee6080f-b4b3-4763-93cc-d752efe25c45" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/0ee6080f-b4b3-4763-93cc-d752efe25c45?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "29fe05d2-7090-4d2f-8198-82e6984b2760" + ], + "x-ms-arm-service-request-id": [ + "20f12159-d7e3-4b75-804d-4958d20d9044" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003430Z:4f99877a-bc54-46d6-ab35-a476673cd924" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:34:30 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjViNzIwNjMtZjhmZS00MTkyLTlmZWItNzI5ZTJjYzMwYTc3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6b94f190-fd4b-4928-936e-f4c9cba284ef" + ], + "x-ms-correlation-request-id": [ + "c388dc0f-63ee-485c-88f7-3122c4297db5" + ], + "x-ms-arm-service-request-id": [ + "e213a032-b365-42a3-955d-85fa2b8611d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003441Z:c388dc0f-63ee-485c-88f7-3122c4297db5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:34: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjViNzIwNjMtZjhmZS00MTkyLTlmZWItNzI5ZTJjYzMwYTc3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "a8a54185-9e1a-40e2-a159-20406ed2a7cf" + ], + "x-ms-correlation-request-id": [ + "28951dfc-2101-473b-ba28-967cc28b1902" + ], + "x-ms-arm-service-request-id": [ + "d4412983-4b37-4fe4-ace0-2bd507197937" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003451Z:28951dfc-2101-473b-ba28-967cc28b1902" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:34: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjViNzIwNjMtZjhmZS00MTkyLTlmZWItNzI5ZTJjYzMwYTc3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "6f2c8156-183e-4886-ae41-0e67c4e3539e" + ], + "x-ms-correlation-request-id": [ + "93c16128-7390-435b-8d41-6c4184c9bd51" + ], + "x-ms-arm-service-request-id": [ + "41071120-6006-4640-81eb-aee871f83a22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003511Z:93c16128-7390-435b-8d41-6c4184c9bd51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:35: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjViNzIwNjMtZjhmZS00MTkyLTlmZWItNzI5ZTJjYzMwYTc3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "fdbd4386-c16e-4fc5-b397-edf8ffe2ba14" + ], + "x-ms-correlation-request-id": [ + "44cedafb-c4e2-4210-9c88-fd710ce8b3de" + ], + "x-ms-arm-service-request-id": [ + "64101196-acbc-4628-8eff-751102956fce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003552Z:44cedafb-c4e2-4210-9c88-fd710ce8b3de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:35: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjViNzIwNjMtZjhmZS00MTkyLTlmZWItNzI5ZTJjYzMwYTc3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cbb1efd0-ded8-474d-9ab1-57d6c4e6841c" + ], + "x-ms-correlation-request-id": [ + "b2325dbc-5fe6-4b8f-bfbb-b1a1274e1f8e" + ], + "x-ms-arm-service-request-id": [ + "69cc6914-5ec7-4286-9d56-ff2e2174ea24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003732Z:b2325dbc-5fe6-4b8f-bfbb-b1a1274e1f8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:37:31 GMT" + ], + "Content-Length": [ + "50" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvZjViNzIwNjMtZjhmZS00MTkyLTlmZWItNzI5ZTJjYzMwYTc3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "f5b72063-f8fe-4192-9feb-729e2cc30a77" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/f5b72063-f8fe-4192-9feb-729e2cc30a77?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "df723cb0-ab0c-4bd7-b2c4-1968191a9db0" + ], + "x-ms-arm-service-request-id": [ + "acd19e29-ed42-4168-8800-44d5209c5a23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003732Z:b51adb7e-172f-4afe-894f-ac1c788b5035" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:37:32 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/92b2b88a-e699-44f3-b58d-75a4c4598de1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTJiMmI4OGEtZTY5OS00NGYzLWI1OGQtNzVhNGM0NTk4ZGUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b3426611-1bba-4b1e-b655-235ec3cb212e" + ], + "x-ms-correlation-request-id": [ + "cd4d896b-adc0-4abd-86b6-532e22ce47b7" + ], + "x-ms-arm-service-request-id": [ + "6c62b1d7-3a82-47e5-9797-05895ba4b42e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003743Z:cd4d896b-adc0-4abd-86b6-532e22ce47b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:37:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/92b2b88a-e699-44f3-b58d-75a4c4598de1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTJiMmI4OGEtZTY5OS00NGYzLWI1OGQtNzVhNGM0NTk4ZGUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "86c290ac-4aa6-4ae6-9b0d-032b0f914120" + ], + "x-ms-correlation-request-id": [ + "5ec8f2d7-11cc-4d2d-b025-b208c9f85dbb" + ], + "x-ms-arm-service-request-id": [ + "68012aec-9be3-465a-811a-6f94c5149de2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003753Z:5ec8f2d7-11cc-4d2d-b025-b208c9f85dbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:37: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/92b2b88a-e699-44f3-b58d-75a4c4598de1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTJiMmI4OGEtZTY5OS00NGYzLWI1OGQtNzVhNGM0NTk4ZGUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "b7c696e1-64f3-4c41-b579-b283286f640a" + ], + "x-ms-correlation-request-id": [ + "d88bf665-4b3e-45ea-a68e-848fa295b9bf" + ], + "x-ms-arm-service-request-id": [ + "2d19797b-7db9-43d4-ae79-6fc3e07055d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003813Z:d88bf665-4b3e-45ea-a68e-848fa295b9bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:38: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/92b2b88a-e699-44f3-b58d-75a4c4598de1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTJiMmI4OGEtZTY5OS00NGYzLWI1OGQtNzVhNGM0NTk4ZGUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "4c14c0ea-28f6-46b7-a4a0-63418f46e42d" + ], + "x-ms-correlation-request-id": [ + "bd0a3a5a-6c0b-4473-a64b-1603d8f1dcd2" + ], + "x-ms-arm-service-request-id": [ + "dbdc43db-caaa-4093-b126-da1f11baac67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T003853Z:bd0a3a5a-6c0b-4473-a64b-1603d8f1dcd2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:38: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/92b2b88a-e699-44f3-b58d-75a4c4598de1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTJiMmI4OGEtZTY5OS00NGYzLWI1OGQtNzVhNGM0NTk4ZGUxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "51cb731f-6056-4122-b425-65da47290cac" + ], + "x-ms-correlation-request-id": [ + "efb7af07-61ba-4d7c-9b35-fd861e7cd0cf" + ], + "x-ms-arm-service-request-id": [ + "bccf0d6a-5251-4568-9227-83f492cad5dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T004034Z:efb7af07-61ba-4d7c-9b35-fd861e7cd0cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:40:33 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnGateways/ps5630?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5HYXRld2F5cy9wczU2MzA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "576396da-067b-4588-abb8-d759b708e319" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "36d35a3c-3dc3-435e-a52e-95d616365f64" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "69eb370c-f33d-4ded-97a3-2cd70c45ec1e" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "267c8922-0b04-4af0-9cab-3b2dbaeb22a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T004036Z:69eb370c-f33d-4ded-97a3-2cd70c45ec1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:40:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d412029f-c9be-4f02-bc00-1097c2676b29" + ], + "x-ms-correlation-request-id": [ + "06cb43a5-6f7c-426a-aefd-b01a1e849a94" + ], + "x-ms-arm-service-request-id": [ + "61a59417-16af-41d3-a7d5-7e9d5fb383ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T004046Z:06cb43a5-6f7c-426a-aefd-b01a1e849a94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:40: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "4deb61b7-c8ac-4dff-aa43-9b7f42ba45e1" + ], + "x-ms-correlation-request-id": [ + "e05c7e33-adb9-4de9-8be2-4a7411fc41cc" + ], + "x-ms-arm-service-request-id": [ + "821fbbea-bb39-48c8-b6ac-ac5e09b9bb89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T004056Z:e05c7e33-adb9-4de9-8be2-4a7411fc41cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:40: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "c77126e4-e294-45d6-b7df-6fbc89bd0dac" + ], + "x-ms-correlation-request-id": [ + "6c2722b0-4ac8-45b0-b310-b0cdece0bfaa" + ], + "x-ms-arm-service-request-id": [ + "dd22d4e7-dcc2-4dc4-804f-2ddf91ba8bd3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T004116Z:6c2722b0-4ac8-45b0-b310-b0cdece0bfaa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:41: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "1b4c72ca-d883-4ffe-95a3-80baa613d3d2" + ], + "x-ms-correlation-request-id": [ + "24de0878-ad80-41be-b8b5-aa466f42e59d" + ], + "x-ms-arm-service-request-id": [ + "7530e92d-4919-47ae-b825-0945f2eac939" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T004136Z:24de0878-ad80-41be-b8b5-aa466f42e59d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:41: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "1fa8abff-e538-494b-9ddc-569edb1b0851" + ], + "x-ms-correlation-request-id": [ + "e05a528e-923a-41e5-8c09-b92509f01897" + ], + "x-ms-arm-service-request-id": [ + "3023193f-efd0-4a9a-8fab-88815f98045c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T004216Z:e05a528e-923a-41e5-8c09-b92509f01897" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:42: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "74c6aaf8-9b03-4e11-9d71-ff02e1d5ae1f" + ], + "x-ms-correlation-request-id": [ + "1e38de9b-054a-4270-8b67-fae76c4e89cf" + ], + "x-ms-arm-service-request-id": [ + "a7c72d19-b3d6-4a79-b53c-46358354a8ac" + ], + "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": [ + "WESTUS2:20200820T004257Z:1e38de9b-054a-4270-8b67-fae76c4e89cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:42: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "47609aeb-7f77-4116-ae20-a93acdef9258" + ], + "x-ms-correlation-request-id": [ + "c701c33f-e214-4c14-a323-b465bf82dae8" + ], + "x-ms-arm-service-request-id": [ + "65c80b5c-8214-43e7-990e-64d959ad54af" + ], + "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": [ + "WESTUS2:20200820T004437Z:c701c33f-e214-4c14-a323-b465bf82dae8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "37d7ecd4-0b92-4d22-8e5b-471750de2d87" + ], + "x-ms-correlation-request-id": [ + "ada69656-06ff-4c1d-b7ac-6092dafeba25" + ], + "x-ms-arm-service-request-id": [ + "1fce5afb-9803-4dcd-9288-4bdda23f2b5b" + ], + "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": [ + "WESTUS2:20200820T004617Z:ada69656-06ff-4c1d-b7ac-6092dafeba25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:46: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "16fbc597-e1cb-485b-9f5a-af47d9468247" + ], + "x-ms-correlation-request-id": [ + "9574815f-7107-4c76-a42c-d4d2266e034f" + ], + "x-ms-arm-service-request-id": [ + "07740ae4-a601-4084-b3fc-78a4668fe8ef" + ], + "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": [ + "WESTUS2:20200820T004757Z:9574815f-7107-4c76-a42c-d4d2266e034f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:47: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "5385c3f5-35b9-4f0f-a209-6bc2b4fd41c7" + ], + "x-ms-correlation-request-id": [ + "026c16f9-53e9-43c6-bc94-36b0e2d5f2b2" + ], + "x-ms-arm-service-request-id": [ + "4e8861a0-3b9a-49e3-9ec1-63f807cf4759" + ], + "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": [ + "WESTUS2:20200820T004938Z:026c16f9-53e9-43c6-bc94-36b0e2d5f2b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:49: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "7e671c2f-46e4-4960-80d2-535674ccd46f" + ], + "x-ms-correlation-request-id": [ + "7439799e-8094-4f4a-aee2-36876e683fe8" + ], + "x-ms-arm-service-request-id": [ + "507055ab-3355-4ac0-a6ca-d09ed09cc534" + ], + "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": [ + "WESTUS2:20200820T005118Z:7439799e-8094-4f4a-aee2-36876e683fe8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:51: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "300b7296-2714-4bfa-ad3e-c6b5095621a7" + ], + "x-ms-correlation-request-id": [ + "ad8a8d89-d4e8-4390-bd8d-6f9d8e36cddd" + ], + "x-ms-arm-service-request-id": [ + "8881a8c8-ab88-4629-88d4-4aba0686d98e" + ], + "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": [ + "WESTUS2:20200820T005258Z:ad8a8d89-d4e8-4390-bd8d-6f9d8e36cddd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:52: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "41cbda0e-e669-41d1-9a0a-08a84204e8c9" + ], + "x-ms-correlation-request-id": [ + "2dfb85e4-d991-4d27-8ed8-4bd3fbea5ad9" + ], + "x-ms-arm-service-request-id": [ + "56d66a47-b940-4e75-b394-456775763abd" + ], + "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": [ + "WESTUS2:20200820T005439Z:2dfb85e4-d991-4d27-8ed8-4bd3fbea5ad9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:54:38 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvMzZkMzVhM2MtM2RjMy00MzVlLWE1MmUtOTVkNjE2MzY1ZjY0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "36d35a3c-3dc3-435e-a52e-95d616365f64" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/36d35a3c-3dc3-435e-a52e-95d616365f64?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "69eb370c-f33d-4ded-97a3-2cd70c45ec1e" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "267c8922-0b04-4af0-9cab-3b2dbaeb22a8" + ], + "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": [ + "WESTUS2:20200820T005439Z:045d40b7-73b7-45fb-8549-8ca5a58ff5d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:54:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/vpnSites/ps1520?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92cG5TaXRlcy9wczE1MjA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2df86f5-a88d-4dbc-b6b8-88c31210d655" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/7d4f9c59-0633-4d56-8c1e-22816f684ef3?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7d4f9c59-0633-4d56-8c1e-22816f684ef3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/7d4f9c59-0633-4d56-8c1e-22816f684ef3?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "d70a918b-569f-48f2-9126-6bd5d53d1a33" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "9d9249bd-89fd-4d5a-b69a-cceb9fd90973" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T005439Z:d70a918b-569f-48f2-9126-6bd5d53d1a33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:54:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/7d4f9c59-0633-4d56-8c1e-22816f684ef3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2Q0ZjljNTktMDYzMy00ZDU2LThjMWUtMjI4MTZmNjg0ZWYzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ca8a0e0d-33f2-4c20-8979-56ab9fa19d76" + ], + "x-ms-correlation-request-id": [ + "7ee965bf-5293-4acb-9219-e1cd250219fa" + ], + "x-ms-arm-service-request-id": [ + "4de9d516-9e65-43f1-83af-1040be14f18e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T005450Z:7ee965bf-5293-4acb-9219-e1cd250219fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:54:49 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/7d4f9c59-0633-4d56-8c1e-22816f684ef3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvN2Q0ZjljNTktMDYzMy00ZDU2LThjMWUtMjI4MTZmNjg0ZWYzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/7d4f9c59-0633-4d56-8c1e-22816f684ef3?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "7d4f9c59-0633-4d56-8c1e-22816f684ef3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/7d4f9c59-0633-4d56-8c1e-22816f684ef3?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "d70a918b-569f-48f2-9126-6bd5d53d1a33" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "9d9249bd-89fd-4d5a-b69a-cceb9fd90973" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T005450Z:58ea0162-99be-4126-8af4-b5e28a6321e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:54:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualHubs/ps8475?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczg0NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "475624f6-095f-44fa-b720-9d19d5624b67" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b84e7932-27c5-454d-a208-9ab28ec8fcc3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "b8f4e448-93f0-424f-b79e-d1ae536da067" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "3b9cc3e1-e768-4bd0-9538-03c0e801e4fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T005450Z:b8f4e448-93f0-424f-b79e-d1ae536da067" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:54:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "957d358c-3c4f-428e-b38f-4aa688b52449" + ], + "x-ms-correlation-request-id": [ + "81e225ee-2301-4922-866b-6f21447ab7f8" + ], + "x-ms-arm-service-request-id": [ + "eb15f951-4d75-478c-ad6f-21c94f60bcd5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T005500Z:81e225ee-2301-4922-866b-6f21447ab7f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:55: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "b70883c2-7161-4dd5-89c8-4fc95cc26645" + ], + "x-ms-correlation-request-id": [ + "49c07247-df00-4fc9-9f92-bc97ac9b1c23" + ], + "x-ms-arm-service-request-id": [ + "08da5027-da25-404b-b3a8-ad6984457256" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T005510Z:49c07247-df00-4fc9-9f92-bc97ac9b1c23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:55: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "50fe1a31-a657-48f9-9db8-8db7682a442f" + ], + "x-ms-correlation-request-id": [ + "13b3e9bc-68f5-4007-93db-ae7a8c17e986" + ], + "x-ms-arm-service-request-id": [ + "60487148-3aa0-4cb8-81a3-4cf9501b9bc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T005530Z:13b3e9bc-68f5-4007-93db-ae7a8c17e986" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:55: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "ff6d4acb-917b-4e19-9c61-66a7f85dcc38" + ], + "x-ms-correlation-request-id": [ + "97ab5764-9ca8-421b-869d-4b28f7c3554f" + ], + "x-ms-arm-service-request-id": [ + "ee2a12be-97d1-4d6b-8358-988523b161e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T005551Z:97ab5764-9ca8-421b-869d-4b28f7c3554f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:55: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "37f1f674-3ca2-4191-9cae-9e1373cca16d" + ], + "x-ms-correlation-request-id": [ + "beeb6f09-c8ec-4747-a569-bff61a9ccf37" + ], + "x-ms-arm-service-request-id": [ + "d4204df4-1f54-4b1a-9835-c54fcb785d15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T005631Z:beeb6f09-c8ec-4747-a569-bff61a9ccf37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:56: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "2ee3361e-4d78-4d23-87f3-10a213ee110a" + ], + "x-ms-correlation-request-id": [ + "5e848f49-8e30-4e62-bb58-068c5091201d" + ], + "x-ms-arm-service-request-id": [ + "f410e722-b17b-4167-98a4-e5080398ba1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T005711Z:5e848f49-8e30-4e62-bb58-068c5091201d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:57: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "7286b3f2-6607-4f08-9a67-a10cae103ee1" + ], + "x-ms-correlation-request-id": [ + "94d0a2a9-f371-4af2-883e-d110ab551350" + ], + "x-ms-arm-service-request-id": [ + "3a1f9c26-7d0f-4c9b-9823-e84c2c613c8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T005851Z:94d0a2a9-f371-4af2-883e-d110ab551350" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 00:58: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "357759e3-e38a-4d80-b009-ccb14e0c763d" + ], + "x-ms-correlation-request-id": [ + "3adbde52-6d3f-4d92-8a4e-be71befa9b0c" + ], + "x-ms-arm-service-request-id": [ + "3a5df36b-a6cb-4226-ab27-deb6621abd7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T010031Z:3adbde52-6d3f-4d92-8a4e-be71befa9b0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:00: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "1e9df99c-307a-4829-b753-c7af75dbe33d" + ], + "x-ms-correlation-request-id": [ + "da009c3c-b965-43f3-8b08-6c4dd991b322" + ], + "x-ms-arm-service-request-id": [ + "edf393b5-cea6-4b45-9941-3d0470bf4049" + ], + "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": [ + "WESTUS2:20200820T010212Z:da009c3c-b965-43f3-8b08-6c4dd991b322" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:02: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5a8ae0b8-8d2e-4efd-a2d6-873d0e8f70c9" + ], + "x-ms-correlation-request-id": [ + "0e76d3f1-733b-4c9e-b061-834548114ab4" + ], + "x-ms-arm-service-request-id": [ + "4dd76ec6-be2d-4479-8c97-7a0506caef59" + ], + "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": [ + "WESTUS2:20200820T010352Z:0e76d3f1-733b-4c9e-b061-834548114ab4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:03:52 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvYjg0ZTc5MzItMjdjNS00NTRkLWEyMDgtOWFiMjhlYzhmY2MzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "b84e7932-27c5-454d-a208-9ab28ec8fcc3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/b84e7932-27c5-454d-a208-9ab28ec8fcc3?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "b8f4e448-93f0-424f-b79e-d1ae536da067" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "3b9cc3e1-e768-4bd0-9538-03c0e801e4fa" + ], + "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": [ + "WESTUS2:20200820T010352Z:7aa3afc8-13e6-453a-bf68-2e41213c9d1a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:03:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps571/providers/Microsoft.Network/virtualWans/ps1450?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzNTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczE0NTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1384d59a-b1a8-470f-b11e-b514924e8d25" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/1bb00c8b-4fa8-48b8-9370-f3a33ab131b4?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1bb00c8b-4fa8-48b8-9370-f3a33ab131b4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/1bb00c8b-4fa8-48b8-9370-f3a33ab131b4?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "57ed2571-75cd-4527-87f4-8accdc69f343" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "8315546c-9a88-4800-89e0-592130732933" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T010352Z:57ed2571-75cd-4527-87f4-8accdc69f343" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:03:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/1bb00c8b-4fa8-48b8-9370-f3a33ab131b4?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMWJiMDBjOGItNGZhOC00OGI4LTkzNzAtZjNhMzNhYjEzMWI0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b302acdf-bee9-4fe1-8ee5-8c88ef70a42d" + ], + "x-ms-correlation-request-id": [ + "e91781c1-30dd-4b77-b0e6-705dfc768afb" + ], + "x-ms-arm-service-request-id": [ + "8f5167ce-a792-483b-9ae2-1d5dad9c0928" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T010402Z:e91781c1-30dd-4b77-b0e6-705dfc768afb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:04:02 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/1bb00c8b-4fa8-48b8-9370-f3a33ab131b4?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvMWJiMDBjOGItNGZhOC00OGI4LTkzNzAtZjNhMzNhYjEzMWI0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operationResults/1bb00c8b-4fa8-48b8-9370-f3a33ab131b4?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "1bb00c8b-4fa8-48b8-9370-f3a33ab131b4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/eastus/operations/1bb00c8b-4fa8-48b8-9370-f3a33ab131b4?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "57ed2571-75cd-4527-87f4-8accdc69f343" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "8315546c-9a88-4800-89e0-592130732933" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T010403Z:89bb9de8-1db0-4c68-ae67-ce13616663ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:04:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourcegroups/ps571?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlZ3JvdXBzL3BzNTcxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ccda1eb-1c53-488c-9dd5-bedb8e12e31b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "c43c27f5-9011-44f3-8f78-89400d5a95c7" + ], + "x-ms-correlation-request-id": [ + "c43c27f5-9011-44f3-8f78-89400d5a95c7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T010404Z:c43c27f5-9011-44f3-8f78-89400d5a95c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:04:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e4374414-ad67-448a-8d8b-37fa1efe9a91" + ], + "x-ms-correlation-request-id": [ + "e4374414-ad67-448a-8d8b-37fa1efe9a91" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T010419Z:e4374414-ad67-448a-8d8b-37fa1efe9a91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:04:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "6b733f9c-0210-4615-bb71-9faa2abd0ab6" + ], + "x-ms-correlation-request-id": [ + "6b733f9c-0210-4615-bb71-9faa2abd0ab6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T010435Z:6b733f9c-0210-4615-bb71-9faa2abd0ab6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:04:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "ff9dd18d-4007-49ed-9e34-81cf921faf02" + ], + "x-ms-correlation-request-id": [ + "ff9dd18d-4007-49ed-9e34-81cf921faf02" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T010450Z:ff9dd18d-4007-49ed-9e34-81cf921faf02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:04:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "6f431a12-24b4-4692-b042-c6d91970a048" + ], + "x-ms-correlation-request-id": [ + "6f431a12-24b4-4692-b042-c6d91970a048" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T010505Z:6f431a12-24b4-4692-b042-c6d91970a048" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:05:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "e14c3fdc-4092-4497-824b-fa8920f28020" + ], + "x-ms-correlation-request-id": [ + "e14c3fdc-4092-4497-824b-fa8920f28020" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T010520Z:e14c3fdc-4092-4497-824b-fa8920f28020" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:05:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "097dd19d-6541-4768-aa5b-03f0e121b253" + ], + "x-ms-correlation-request-id": [ + "097dd19d-6541-4768-aa5b-03f0e121b253" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T010535Z:097dd19d-6541-4768-aa5b-03f0e121b253" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:05:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "91323707-8404-4057-995b-c385fbdba284" + ], + "x-ms-correlation-request-id": [ + "91323707-8404-4057-995b-c385fbdba284" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T010550Z:91323707-8404-4057-995b-c385fbdba284" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:05:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01TMUZRVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "d9ab2f18-2f21-43d6-9acd-559c74ed9633" + ], + "x-ms-correlation-request-id": [ + "d9ab2f18-2f21-43d6-9acd-559c74ed9633" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200820T010551Z:d9ab2f18-2f21-43d6-9acd-559c74ed9633" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 20 Aug 2020 01:05:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-VpnConnectionPacketCapture": [ + "ps571", + "ps1450", + "ps8475", + "ps1520", + "ps5630", + "ps4922", + "ps8868", + "ps9054", + "ps1039", + "ps35", + "ps5584", + "ps1645" + ] + }, + "Variables": { + "SubscriptionId": "79ea0716-8a0e-4e48-a348-e3952d79809e" + } +} \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnGatewayPacketCapture.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnGatewayPacketCapture.json new file mode 100644 index 000000000000..781e24fd9fde --- /dev/null +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnGatewayPacketCapture.json @@ -0,0 +1,7097 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourcegroups/ps2542?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlZ3JvdXBzL3BzMjU0Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "284b42df-6043-46f5-a103-ee7e81802604" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "1754e5dd-d88f-4029-9e9a-2b9c0fc928af" + ], + "x-ms-correlation-request-id": [ + "1754e5dd-d88f-4029-9e9a-2b9c0fc928af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202026Z:1754e5dd-d88f-4029-9e9a-2b9c0fc928af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:20:25 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542\",\r\n \"name\": \"ps2542\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0OTMwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "377654d2-62bd-4441-94fd-71ad06ffb69a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9ae68f6d-d386-4ce2-9469-f4d0439ad7c0" + ], + "x-ms-correlation-request-id": [ + "9ae68f6d-d386-4ce2-9469-f4d0439ad7c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202026Z:9ae68f6d-d386-4ce2-9469-f4d0439ad7c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:20:25 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/virtualWans/ps4930' under resource group 'ps2542' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0OTMwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\"" + ], + "x-ms-request-id": [ + "0efb03b6-3634-40f1-a683-9a5a09e45b0b" + ], + "x-ms-correlation-request-id": [ + "0f0d72c2-5baa-4cad-9b13-ef366c6accf4" + ], + "x-ms-arm-service-request-id": [ + "52abca8b-9631-476e-9148-7afbef49037e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202037Z:0f0d72c2-5baa-4cad-9b13-ef366c6accf4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:20:37 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4930\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\",\r\n \"etag\": \"W/\\\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0OTMwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "673dd042-2dc5-414b-87c6-aeb256420722" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\"" + ], + "x-ms-request-id": [ + "fa939209-3a8a-4a79-aaec-d941ed947b3e" + ], + "x-ms-correlation-request-id": [ + "896719bd-bda5-4b65-abd5-3c0a0262100d" + ], + "x-ms-arm-service-request-id": [ + "9cfde304-cbe2-4f7a-9dae-8c140c7609d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202037Z:896719bd-bda5-4b65-abd5-3c0a0262100d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:20:37 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4930\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\",\r\n \"etag\": \"W/\\\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0OTMwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0f2d6e2-7b87-4e16-a1c7-c566f2947d70" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\"" + ], + "x-ms-request-id": [ + "8a4dd073-59e4-456b-b4bd-7f380abdc0f3" + ], + "x-ms-correlation-request-id": [ + "faa59f45-0f7d-48f9-8ef8-a6ac0600eeb7" + ], + "x-ms-arm-service-request-id": [ + "ebdc028c-ae84-4fd6-9b34-8c09e1387ae1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202038Z:faa59f45-0f7d-48f9-8ef8-a6ac0600eeb7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:20:37 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4930\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\",\r\n \"etag\": \"W/\\\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0OTMwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74779e2d-a80e-4c6b-b5d3-ab59c0fe561b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\"" + ], + "x-ms-request-id": [ + "cba7edf1-5da3-4980-9a4a-d03c3e206f5e" + ], + "x-ms-correlation-request-id": [ + "9a92380e-2c17-485a-82e0-c6267999a4ef" + ], + "x-ms-arm-service-request-id": [ + "6a6367da-423e-4379-879a-18e58bfa0033" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202038Z:9a92380e-2c17-485a-82e0-c6267999a4ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:20:38 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4930\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\",\r\n \"etag\": \"W/\\\"72ecc737-5ecd-43bd-8b7a-d2c6ab37610b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0OTMwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"allowBranchToBranchTraffic\": true,\r\n \"allowVnetToVnetTraffic\": true,\r\n \"type\": \"Standard\"\r\n },\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6729028f-d7f4-463c-a967-c32999a170fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "164" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f12b1645-cf20-4147-a066-0f743ad28f5b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/f12b1645-cf20-4147-a066-0f743ad28f5b?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "2794918c-3409-45e6-afb3-44c141552f4f" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "a295d2f2-a927-4b4e-872e-150c5724a289" + ], + "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": [ + "WESTUS2:20200819T202027Z:2794918c-3409-45e6-afb3-44c141552f4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:20:26 GMT" + ], + "Content-Length": [ + "501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4930\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\",\r\n \"etag\": \"W/\\\"1be085e9-061c-454b-a2e6-fb4f36fe589f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/f12b1645-cf20-4147-a066-0f743ad28f5b?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YxMmIxNjQ1LWNmMjAtNDE0Ny1hMDY2LTBmNzQzYWQyOGY1Yj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3e5773f0-cf76-4e77-ba2f-775867b80f4e" + ], + "x-ms-correlation-request-id": [ + "7763cfd3-d353-4054-b24b-65e69be3ae44" + ], + "x-ms-arm-service-request-id": [ + "e6319b5a-70f7-4560-acfc-4cdb584b4643" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202037Z:7763cfd3-d353-4054-b24b-65e69be3ae44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:20:37 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "864e1f7a-0b69-4e3c-8ca8-f41d68043d3a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d68a1660-2657-4ed7-9919-c7eade525d13" + ], + "x-ms-correlation-request-id": [ + "d68a1660-2657-4ed7-9919-c7eade525d13" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202038Z:d68a1660-2657-4ed7-9919-c7eade525d13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:20:38 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/ps7785' under resource group 'ps2542' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f71ede5b-b70b-492d-a18e-c5947865c82b" + ], + "x-ms-correlation-request-id": [ + "64351822-c2fa-4688-8c7e-7207475c728c" + ], + "x-ms-arm-service-request-id": [ + "f290f503-910c-42d1-821b-191552b177b9" + ], + "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": [ + "WESTUS2:20200819T202620Z:64351822-c2fa-4688-8c7e-7207475c728c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:26:19 GMT" + ], + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7785\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\",\r\n \"etag\": \"W/\\\"6a283720-0d5e-4b29-bb90-6bc5dd242ef7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\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/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5052860-f46b-4bc1-b479-37ecf3e50287" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aa8208d8-7905-4fbb-898b-165cfce779a9" + ], + "x-ms-correlation-request-id": [ + "d9fef011-e709-4c38-aab3-d43501f9357f" + ], + "x-ms-arm-service-request-id": [ + "ab7aa25c-f3fb-4bf0-a733-d175cc139bc6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202620Z:d9fef011-e709-4c38-aab3-d43501f9357f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:26:20 GMT" + ], + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7785\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\",\r\n \"etag\": \"W/\\\"6a283720-0d5e-4b29-bb90-6bc5dd242ef7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\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/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "60a01432-12a2-4668-8b46-e2d8c71ef70c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d82b0fe6-52c5-4cd7-b6fb-f5dda5d20e0b" + ], + "x-ms-correlation-request-id": [ + "3fa9332a-2b9d-4fc6-80b9-6d881508621b" + ], + "x-ms-arm-service-request-id": [ + "bed53e94-5925-48db-90ec-3251217f72d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202621Z:3fa9332a-2b9d-4fc6-80b9-6d881508621b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:26:21 GMT" + ], + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7785\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\",\r\n \"etag\": \"W/\\\"6a283720-0d5e-4b29-bb90-6bc5dd242ef7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\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/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\"\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\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1223b7c-4431-4bbb-971a-0c0d9a0a31dc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "352" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a81bea89-29a0-4c7e-afed-19a9704c8686" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "c8e0f6cc-c844-4354-92cd-ee14ee348288" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "4257aa16-7c73-4e2a-a5be-f32af4763211" + ], + "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": [ + "WESTUS2:20200819T202039Z:c8e0f6cc-c844-4354-92cd-ee14ee348288" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:20:39 GMT" + ], + "Content-Length": [ + "749" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7785\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\",\r\n \"etag\": \"W/\\\"448ffdfc-8691-4a5a-9701-694b74d080a2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\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/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "36e319ee-6b24-4882-81ed-429c240385c5" + ], + "x-ms-correlation-request-id": [ + "c2d2aec4-8acb-4b0e-b180-2548875de104" + ], + "x-ms-arm-service-request-id": [ + "bf841fd6-037f-4080-800f-4de28823e035" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202049Z:c2d2aec4-8acb-4b0e-b180-2548875de104" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:20: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "25ceb399-3d7e-45e7-8e2a-a75242e1aceb" + ], + "x-ms-correlation-request-id": [ + "a586a5b8-8e81-4913-af9a-36ccaeff6b8c" + ], + "x-ms-arm-service-request-id": [ + "e5060100-54cc-4c76-983d-a01f9d3e17f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202059Z:a586a5b8-8e81-4913-af9a-36ccaeff6b8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:20: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "4542046c-671e-4451-9979-907d5dd9974e" + ], + "x-ms-correlation-request-id": [ + "22c45a78-4b89-4ed7-a002-ef7bf96b1b37" + ], + "x-ms-arm-service-request-id": [ + "e7e77336-f2ef-4bf5-a60d-dfa0a7198069" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202119Z:22c45a78-4b89-4ed7-a002-ef7bf96b1b37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:21: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "d6f6c3c1-cc7d-43fd-8a27-39eb598157b8" + ], + "x-ms-correlation-request-id": [ + "23746af5-415f-4a8c-95cd-18f54cc09363" + ], + "x-ms-arm-service-request-id": [ + "c43ee641-f395-48ed-8e6d-09a4ded91e08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202139Z:23746af5-415f-4a8c-95cd-18f54cc09363" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:21: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "9403aeb5-768e-45c3-9d1a-53f50309c9d7" + ], + "x-ms-correlation-request-id": [ + "01fe81f2-6331-4974-8f57-c829335fc971" + ], + "x-ms-arm-service-request-id": [ + "332ea1cd-67f0-4a8e-84f5-620b16e83f40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202220Z:01fe81f2-6331-4974-8f57-c829335fc971" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:22: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "e9b129cb-e6d0-400c-a460-b7559c818907" + ], + "x-ms-correlation-request-id": [ + "b2aa5dfa-cc45-46ed-a0dc-f9d84d69777e" + ], + "x-ms-arm-service-request-id": [ + "b1717863-a942-454d-9530-761f1be85be8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202300Z:b2aa5dfa-cc45-46ed-a0dc-f9d84d69777e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:22: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "aa4c5717-36c1-4739-8d28-50a415f64755" + ], + "x-ms-correlation-request-id": [ + "5fa897a1-3737-4ba2-bc61-308aa47e91d0" + ], + "x-ms-arm-service-request-id": [ + "c26e3ecb-67cf-4717-8cbf-a34226711b66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202440Z:5fa897a1-3737-4ba2-bc61-308aa47e91d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:24: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a81bea89-29a0-4c7e-afed-19a9704c8686?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E4MWJlYTg5LTI5YTAtNGM3ZS1hZmVkLTE5YTk3MDRjODY4Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f9af644f-aeeb-4bb7-8558-78b5fef5094f" + ], + "x-ms-correlation-request-id": [ + "823be4a7-9445-4753-8988-2f49907727ea" + ], + "x-ms-arm-service-request-id": [ + "c3762385-ce3a-41fa-8b8b-7442d46149bf" + ], + "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": [ + "WESTUS2:20200819T202620Z:823be4a7-9445-4753-8988-2f49907727ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:26:19 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785/hubVirtualNetworkConnections?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1L2h1YlZpcnR1YWxOZXR3b3JrQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8badd8ad-1dc9-495b-8cb5-2292f0efb980" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "836d59c8-6d54-4642-a969-5869c78b9a6d" + ], + "x-ms-correlation-request-id": [ + "dc9503eb-c26d-4fb1-9949-927168376860" + ], + "x-ms-arm-service-request-id": [ + "a17b540c-8f56-4ce6-b1b0-7359761728c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202620Z:dc9503eb-c26d-4fb1-9949-927168376860" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:26:20 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785/hubVirtualNetworkConnections?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1L2h1YlZpcnR1YWxOZXR3b3JrQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d107c51b-33b4-4fc9-b2d1-6baecff3edb5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a358b684-ebb1-45e3-9e04-cb33977b52a6" + ], + "x-ms-correlation-request-id": [ + "192d3bf6-3664-4dd1-8aed-275639decd8f" + ], + "x-ms-arm-service-request-id": [ + "7da3b116-fbee-487c-9a31-1356d08d2019" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202621Z:192d3bf6-3664-4dd1-8aed-275639decd8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:26:21 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a3c27c7-f39f-4e45-ad9a-f9ee5a337179" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "610c32e7-f070-4e75-a4e3-38b164f278dc" + ], + "x-ms-correlation-request-id": [ + "610c32e7-f070-4e75-a4e3-38b164f278dc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202621Z:610c32e7-f070-4e75-a4e3-38b164f278dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:26:20 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/vpnGateways/ps3158' under resource group 'ps2542' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0ebbe064-2d52-4884-9899-5a97e7c2951a" + ], + "x-ms-correlation-request-id": [ + "3548470f-482f-4055-94be-42c800d1783c" + ], + "x-ms-arm-service-request-id": [ + "60415953-948b-4176-a81f-a281d94af470" + ], + "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": [ + "WESTUS2:20200819T205205Z:3548470f-482f-4055-94be-42c800d1783c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:52:05 GMT" + ], + "Content-Length": [ + "1595" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3158\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158\",\r\n \"etag\": \"W/\\\"fc49a69d-80d5-4a96-847a-b56990977ef9\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.159.3.51\",\r\n \"10.0.0.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.159.4.128\",\r\n \"10.0.0.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.159.3.51\",\r\n \"privateIpAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.159.4.128\",\r\n \"privateIpAddress\": \"10.0.0.5\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5c4c62f-91f2-440e-9eee-26ecca776d0c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3da8a4c1-a9f0-4dbb-87c3-9ad7f7581349" + ], + "x-ms-correlation-request-id": [ + "2487eaa7-6de6-48f4-8134-128162b90fc0" + ], + "x-ms-arm-service-request-id": [ + "71c2d04f-0595-4ccf-90af-2097e5436d1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205225Z:2487eaa7-6de6-48f4-8134-128162b90fc0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:52:25 GMT" + ], + "Content-Length": [ + "1595" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3158\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158\",\r\n \"etag\": \"W/\\\"fc49a69d-80d5-4a96-847a-b56990977ef9\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.159.3.51\",\r\n \"10.0.0.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.159.4.128\",\r\n \"10.0.0.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.159.3.51\",\r\n \"privateIpAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.159.4.128\",\r\n \"privateIpAddress\": \"10.0.0.5\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ded6685e-1884-44bb-9de8-7970efa7d97f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "afd9aca6-cd28-4c42-b0e6-b1749b389c22" + ], + "x-ms-correlation-request-id": [ + "6d688a83-6f3c-4732-b443-9e70bff8fa07" + ], + "x-ms-arm-service-request-id": [ + "e6621bcf-cae3-4c0e-bc52-478ca0183fd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205235Z:6d688a83-6f3c-4732-b443-9e70bff8fa07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:52:34 GMT" + ], + "Content-Length": [ + "1598" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3158\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158\",\r\n \"etag\": \"W/\\\"ce427951-542b-46aa-a3ea-b8556b58c921\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.13\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.159.3.51\",\r\n \"10.0.0.4\"\r\n ]\r\n },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.0.12\"\r\n ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": [\r\n \"52.159.4.128\",\r\n \"10.0.0.5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"Running\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n \"publicIpAddress\": \"52.159.3.51\",\r\n \"privateIpAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n \"publicIpAddress\": \"52.159.4.128\",\r\n \"privateIpAddress\": \"10.0.0.5\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\"\r\n },\r\n \"connections\": [],\r\n \"vpnGatewayScaleUnit\": 3\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42f7ae40-b697-4ca4-8bcc-a78bf2163b94" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "279" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "96ff03b0-64a5-41fe-a140-21a11ac0395c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "fd1fb29c-7ec0-4ed0-8d67-c1feffcbdf83" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "42a2a634-0096-4dbd-9240-636d8c72a224" + ], + "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": [ + "WESTUS2:20200819T202622Z:fd1fb29c-7ec0-4ed0-8d67-c1feffcbdf83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:26:21 GMT" + ], + "Content-Length": [ + "720" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3158\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158\",\r\n \"etag\": \"W/\\\"c6493817-0f92-4951-b1f9-11f0abeaf309\\\"\",\r\n \"type\": \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": 0\r\n },\r\n \"vpnGatewayScaleUnit\": 3,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"ipConfigurations\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a4b20642-ab0c-4263-8f2b-74348901e3a8" + ], + "x-ms-correlation-request-id": [ + "d76f42d5-a863-4669-ad1f-9412de486ca6" + ], + "x-ms-arm-service-request-id": [ + "b68e8f26-8999-4e3c-b30c-293ee9e55e58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202632Z:d76f42d5-a863-4669-ad1f-9412de486ca6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:26: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "8cdce756-a3fb-44e8-aa43-3bbbcdd6017e" + ], + "x-ms-correlation-request-id": [ + "10db03b1-7294-4229-b90c-3c5631d61591" + ], + "x-ms-arm-service-request-id": [ + "8cb767b5-e456-4aa0-9672-617f8861e1bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202642Z:10db03b1-7294-4229-b90c-3c5631d61591" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:26: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "646c8567-a3af-417f-a6bf-ed590262560d" + ], + "x-ms-correlation-request-id": [ + "04a19cdf-a802-4a3d-a8b8-76f11b326c41" + ], + "x-ms-arm-service-request-id": [ + "a186ad9b-2895-486a-9474-f4ad87557b67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202703Z:04a19cdf-a802-4a3d-a8b8-76f11b326c41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "f5cc2af3-e3b3-4991-a93d-9bd68cac15e0" + ], + "x-ms-correlation-request-id": [ + "1704e41a-d4f3-441b-9582-282fa10b9c20" + ], + "x-ms-arm-service-request-id": [ + "170c16d2-b842-4f78-a53a-aec2a9eb3554" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202723Z:1704e41a-d4f3-441b-9582-282fa10b9c20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:27: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "06acb345-3d19-472f-8ffe-730beb97027e" + ], + "x-ms-correlation-request-id": [ + "2390799b-12a0-4637-8edb-fc3dda54af8e" + ], + "x-ms-arm-service-request-id": [ + "9d7ddfa9-cd03-4aa8-86da-4d8bd7f21768" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202803Z:2390799b-12a0-4637-8edb-fc3dda54af8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:28: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "2f312dc5-e807-4efb-a68e-47ef7b5db5d8" + ], + "x-ms-correlation-request-id": [ + "0a6a11a2-a246-4b4a-8686-d9a7f795e61e" + ], + "x-ms-arm-service-request-id": [ + "ecf6d553-db83-4603-a8a2-4db22727ee9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T202843Z:0a6a11a2-a246-4b4a-8686-d9a7f795e61e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:28: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "e33adc81-7719-44c6-a598-f16369a859e4" + ], + "x-ms-correlation-request-id": [ + "18ec906c-ebe5-4ec7-bd32-cf4f7aefbf74" + ], + "x-ms-arm-service-request-id": [ + "9f9a0aaf-9c82-468f-b347-15842ea6ac04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T203023Z:18ec906c-ebe5-4ec7-bd32-cf4f7aefbf74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:30: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "cf85946b-0ad8-4904-9f45-cd3da73a3d5f" + ], + "x-ms-correlation-request-id": [ + "fb17d1b6-78b4-41e3-ab94-3507731cdabd" + ], + "x-ms-arm-service-request-id": [ + "69aba231-7979-444f-8ccf-c1b5611beb3d" + ], + "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": [ + "WESTUS2:20200819T203203Z:fb17d1b6-78b4-41e3-ab94-3507731cdabd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "3b7e8539-6a04-4b08-aa51-f29585b98d72" + ], + "x-ms-correlation-request-id": [ + "66d70b32-3c40-4eae-b3ff-19aee46def0e" + ], + "x-ms-arm-service-request-id": [ + "53d531d2-06f0-4e8e-a44b-1a8c8be694b0" + ], + "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": [ + "WESTUS2:20200819T203343Z:66d70b32-3c40-4eae-b3ff-19aee46def0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:33:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "77dd148a-9a85-4bb3-a818-7c94c4267b43" + ], + "x-ms-correlation-request-id": [ + "68d3e152-b041-4d89-8481-134fdfa602ef" + ], + "x-ms-arm-service-request-id": [ + "0883bdfa-a768-4ae3-928d-efd27557743f" + ], + "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": [ + "WESTUS2:20200819T203523Z:68d3e152-b041-4d89-8481-134fdfa602ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:35:23 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "29bb2482-4bb9-469d-b1dc-663f7f06a8d7" + ], + "x-ms-correlation-request-id": [ + "c7035381-262a-4f3a-a75d-968bbb7a93b3" + ], + "x-ms-arm-service-request-id": [ + "22dc7e9d-c078-4b0e-960f-2c5657cc6121" + ], + "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": [ + "WESTUS2:20200819T203704Z:c7035381-262a-4f3a-a75d-968bbb7a93b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:37: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "5e3a5f4c-4527-453d-ba7f-1a48ce99eea5" + ], + "x-ms-correlation-request-id": [ + "8ef8ac03-abcd-4d75-a7c0-e3dca43a39c1" + ], + "x-ms-arm-service-request-id": [ + "0823d6e0-1d47-4ed4-8d59-420adc4bf30e" + ], + "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": [ + "WESTUS2:20200819T203844Z:8ef8ac03-abcd-4d75-a7c0-e3dca43a39c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:38:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "be0223bc-985d-467c-b590-c7875d3b9b42" + ], + "x-ms-correlation-request-id": [ + "166d4251-9b1c-4022-a6ec-584add149dd1" + ], + "x-ms-arm-service-request-id": [ + "3c40b87e-3c2b-41f5-8bfc-e8b26741ace4" + ], + "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": [ + "WESTUS2:20200819T204024Z:166d4251-9b1c-4022-a6ec-584add149dd1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:40: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "349ba176-2a52-4d53-b63a-93865e439bf2" + ], + "x-ms-correlation-request-id": [ + "75bad162-a8e2-445b-8b06-244188e2658b" + ], + "x-ms-arm-service-request-id": [ + "b45a1b5d-4c0d-4e1e-83ac-a5d217fc8e01" + ], + "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": [ + "WESTUS2:20200819T204204Z:75bad162-a8e2-445b-8b06-244188e2658b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:42: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "0171b663-519e-4c82-9b75-8f3f8acaf5b8" + ], + "x-ms-correlation-request-id": [ + "bda07470-32ea-4899-a0d2-b08f0c0d4f0b" + ], + "x-ms-arm-service-request-id": [ + "2ac1e59f-1228-42a8-9986-57c70ae0f5ff" + ], + "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": [ + "WESTUS2:20200819T204344Z:bda07470-32ea-4899-a0d2-b08f0c0d4f0b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:43: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "8483bea9-49fc-416e-a686-3576972d20ba" + ], + "x-ms-correlation-request-id": [ + "478bc07c-f519-4281-b7c5-678cfbf7e9f7" + ], + "x-ms-arm-service-request-id": [ + "9bf362bb-e209-4839-b094-10ba7b79dfb9" + ], + "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": [ + "WESTUS2:20200819T204524Z:478bc07c-f519-4281-b7c5-678cfbf7e9f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:45: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "29855159-59a8-414d-b500-c9dd995c332f" + ], + "x-ms-correlation-request-id": [ + "ee3ad370-0cd1-45f8-b3d1-aa576030a6e9" + ], + "x-ms-arm-service-request-id": [ + "9a8bc84b-d381-4c65-87c2-2863d7102536" + ], + "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": [ + "WESTUS2:20200819T204704Z:ee3ad370-0cd1-45f8-b3d1-aa576030a6e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:47: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "22cb9b22-76de-46d5-ab9d-df0261298585" + ], + "x-ms-correlation-request-id": [ + "cc1b3a4b-9959-4e5a-9a51-526a7d432453" + ], + "x-ms-arm-service-request-id": [ + "45f72680-fa04-4f9b-ab97-c46a41388743" + ], + "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": [ + "WESTUS2:20200819T204845Z:cc1b3a4b-9959-4e5a-9a51-526a7d432453" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:48: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "3da7b02c-238e-47ed-96be-29fe083af292" + ], + "x-ms-correlation-request-id": [ + "05174957-be73-444a-a291-dda878f8f036" + ], + "x-ms-arm-service-request-id": [ + "ed9f94ea-eefb-4add-9f5b-756c3e044d52" + ], + "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": [ + "WESTUS2:20200819T205025Z:05174957-be73-444a-a291-dda878f8f036" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:50: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/96ff03b0-64a5-41fe-a140-21a11ac0395c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk2ZmYwM2IwLTY0YTUtNDFmZS1hMTQwLTIxYTExYWMwMzk1Yz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0ba697d4-20ef-4c3b-8033-e6dcba91861c" + ], + "x-ms-correlation-request-id": [ + "250d2fd0-90a5-49ae-b42f-edab7b5b874e" + ], + "x-ms-arm-service-request-id": [ + "060da2fe-b640-4048-9b21-755faba0b605" + ], + "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": [ + "WESTUS2:20200819T205205Z:250d2fd0-90a5-49ae-b42f-edab7b5b874e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:52:05 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"stops2542\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4175fdf-c537-4b33-8a4d-c3ff98481709" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "75" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "abd957c5-e681-42ea-a966-ae25be7c507a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "241d66d9-cf8a-4968-9b3a-b0d80355a5ae" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205205Z:241d66d9-cf8a-4968-9b3a-b0d80355a5ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:52:05 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Storage/storageAccounts/stops2542?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzMjU0Mj9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "129c7459-45d8-48d5-8292-fa7726a81791" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "107" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/a525aaec-f058-412a-ae54-4fb1dfb9f253?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "a525aaec-f058-412a-ae54-4fb1dfb9f253" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "20b423b8-8c6f-4f39-a31a-2917428e7d05" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205207Z:20b423b8-8c6f-4f39-a31a-2917428e7d05" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:52:06 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/a525aaec-f058-412a-ae54-4fb1dfb9f253?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvYTUyNWFhZWMtZjA1OC00MTJhLWFlNTQtNGZiMWRmYjlmMjUzP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "75f02b8e-7e1a-41fe-bf6f-59deddcfcdd4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "d394b2e3-69cb-4852-b1a9-ab298836c0ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205224Z:d394b2e3-69cb-4852-b1a9-ab298836c0ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:52:23 GMT" + ], + "Content-Length": [ + "1277" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Storage/storageAccounts/stops2542\",\r\n \"name\": \"stops2542\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-19T20:52:06.6601985Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-19T20:52:06.6601985Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-19T20:52:06.5977168Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stops2542.dfs.core.windows.net/\",\r\n \"web\": \"https://stops2542.z4.web.core.windows.net/\",\r\n \"blob\": \"https://stops2542.blob.core.windows.net/\",\r\n \"queue\": \"https://stops2542.queue.core.windows.net/\",\r\n \"table\": \"https://stops2542.table.core.windows.net/\",\r\n \"file\": \"https://stops2542.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Storage/storageAccounts/stops2542?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzMjU0Mj9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39558780-b5bb-4833-b9bf-79ef6db3ab5e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6ece2d38-40b1-434d-baf1-f4837829b57c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "4adc72e6-dda2-4353-86e5-bfd50bf4113f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205224Z:4adc72e6-dda2-4353-86e5-bfd50bf4113f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:52:24 GMT" + ], + "Content-Length": [ + "1277" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Storage/storageAccounts/stops2542\",\r\n \"name\": \"stops2542\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-19T20:52:06.6601985Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-19T20:52:06.6601985Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-19T20:52:06.5977168Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stops2542.dfs.core.windows.net/\",\r\n \"web\": \"https://stops2542.z4.web.core.windows.net/\",\r\n \"blob\": \"https://stops2542.blob.core.windows.net/\",\r\n \"queue\": \"https://stops2542.queue.core.windows.net/\",\r\n \"table\": \"https://stops2542.table.core.windows.net/\",\r\n \"file\": \"https://stops2542.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Storage/storageAccounts/stops2542/listKeys?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzMjU0Mi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ebe969f-51f7-431b-be74-b65a077a1eeb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e7059cad-b7e6-4ac7-acdb-cdce34cc2db7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "ebf27a38-074d-422f-af87-1cca4d0df14a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205224Z:ebf27a38-074d-422f-af87-1cca4d0df14a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:52:23 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"UG+r5LOMB0MsK9BgJnjkPAUfOtsDN6Mk6oNU0WViHeOfj9/Ac3yUqy0QLzEmRQ/tK8LTgmqaygvznBe1gt2otA==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"ICjwCmc3YREDmUyzlccxCrCLWaWfvWAUWRiMd3Bj8HRV/BV6DWNrE5E3XvUIieJa/25m7VcVrt3YOBzMDnmA8A==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158/startpacketcapture?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4L3N0YXJ0cGFja2V0Y2FwdHVyZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "POST", + "RequestBody": "{}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a31c9df3-6661-4ec4-add1-3eb91a1d245f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/3afd05fd-9d11-4a95-9b34-109dfbd6a81a?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3afd05fd-9d11-4a95-9b34-109dfbd6a81a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/3afd05fd-9d11-4a95-9b34-109dfbd6a81a?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "deeedb73-8e5b-456b-8e92-492629e765e8" + ], + "x-ms-arm-service-request-id": [ + "417cdae0-e6d0-45f1-be8a-beaf885ee538" + ], + "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": [ + "WESTUS2:20200819T205225Z:deeedb73-8e5b-456b-8e92-492629e765e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:52:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158/startpacketcapture?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4L3N0YXJ0cGFja2V0Y2FwdHVyZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"filterData\": \"{\\\"TracingFlags\\\":11,\\\"MaxPacketBufferSize\\\":120,\\\"MaxFileSize\\\":500,\\\"Filters\\\":[{\\\"SourceSubnets\\\":[\\\"10.19.0.4/32\\\",\\\"10.20.0.4/32\\\"],\\\"DestinationSubnets\\\":[\\\"10.20.0.4/32\\\",\\\"10.19.0.4/32\\\"],\\\"IpSubnetValueAsAny\\\":true,\\\"TcpFlags\\\":-1,\\\"PortValueAsAny\\\":true,\\\"CaptureSingleDirectionTrafficOnly\\\":true}]}\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87487e71-f616-4b68-94ad-0a2f0e066584" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "333" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/633a75dc-67fb-4293-ab94-bb75dae9bc9b?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "633a75dc-67fb-4293-ab94-bb75dae9bc9b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/633a75dc-67fb-4293-ab94-bb75dae9bc9b?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "ed1a43bd-be8f-485d-93b8-f354562417a6" + ], + "x-ms-arm-service-request-id": [ + "09d1f3e6-bafe-41b2-b268-59eeef62dd27" + ], + "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": [ + "WESTUS2:20200819T205346Z:ed1a43bd-be8f-485d-93b8-f354562417a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:53:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/3afd05fd-9d11-4a95-9b34-109dfbd6a81a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzNhZmQwNWZkLTlkMTEtNGE5NS05YjM0LTEwOWRmYmQ2YTgxYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b961360-c1c1-440b-81ed-6a02079cb6b9" + ], + "x-ms-correlation-request-id": [ + "260f5a6d-4a1c-4c1c-a97a-94b0028d7d7b" + ], + "x-ms-arm-service-request-id": [ + "41261b94-2ac2-4468-8cc2-7d2292c038a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205235Z:260f5a6d-4a1c-4c1c-a97a-94b0028d7d7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:52:35 GMT" + ], + "Content-Length": [ + "50" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/3afd05fd-9d11-4a95-9b34-109dfbd6a81a?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzNhZmQwNWZkLTlkMTEtNGE5NS05YjM0LTEwOWRmYmQ2YTgxYT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/3afd05fd-9d11-4a95-9b34-109dfbd6a81a?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "3afd05fd-9d11-4a95-9b34-109dfbd6a81a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/3afd05fd-9d11-4a95-9b34-109dfbd6a81a?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "deeedb73-8e5b-456b-8e92-492629e765e8" + ], + "x-ms-arm-service-request-id": [ + "417cdae0-e6d0-45f1-be8a-beaf885ee538" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205235Z:633a08e6-7b2a-4a8d-a523-ee22462e23d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:52:35 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158/stoppacketcapture?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4L3N0b3BwYWNrZXRjYXB0dXJlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"sasUrl\": \"https://stops2542.blob.core.windows.net/testcontainer?sv=2019-02-02&sr=c&sig=%2FLNB%2B6g7RW2ccJxcT2kDNsoZmDjRNCaZnTEW%2FgtdrWg%3D&st=2020-08-19T19%3A52%3A27Z&se=2020-08-20T20%3A52%3A27Z&sp=rwd\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4f6ba67-c2d5-4953-a2e5-7afe4d601903" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f8145154-3319-4a25-877b-44c8244bb8d8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "8cb78305-5eca-4364-85fe-eab01f4d50a5" + ], + "x-ms-arm-service-request-id": [ + "c4f404bf-3f0e-42a1-b88b-1a5299edcbaf" + ], + "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": [ + "WESTUS2:20200819T205235Z:8cb78305-5eca-4364-85fe-eab01f4d50a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:52:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158/stoppacketcapture?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4L3N0b3BwYWNrZXRjYXB0dXJlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"sasUrl\": \"https://stops2542.blob.core.windows.net/testcontainer?sv=2019-02-02&sr=c&sig=%2FLNB%2B6g7RW2ccJxcT2kDNsoZmDjRNCaZnTEW%2FgtdrWg%3D&st=2020-08-19T19%3A52%3A27Z&se=2020-08-20T20%3A52%3A27Z&sp=rwd\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6281e165-223a-4a84-aa23-12e497eca419" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "28dbd0fe-0ac8-4d68-90a6-bc7788e04857" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "0bfff5c3-147f-4681-8130-599a040f6fca" + ], + "x-ms-arm-service-request-id": [ + "9c8e906b-0d5c-4c2d-b224-ed5348826840" + ], + "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": [ + "WESTUS2:20200819T205357Z:0bfff5c3-147f-4681-8130-599a040f6fca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:53:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Y4MTQ1MTU0LTMzMTktNGEyNS04NzdiLTQ0YzgyNDRiYjhkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "ef04957d-97b6-43cf-8937-a3ea8d9c7fa7" + ], + "x-ms-correlation-request-id": [ + "82c5a2ed-df90-44cc-9f5a-a4c2b1654e42" + ], + "x-ms-arm-service-request-id": [ + "687cd2c9-4074-47e4-9221-0fcbc2f0b876" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205246Z:82c5a2ed-df90-44cc-9f5a-a4c2b1654e42" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:52: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Y4MTQ1MTU0LTMzMTktNGEyNS04NzdiLTQ0YzgyNDRiYjhkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "71842758-51e0-45b0-832d-ce3c551e49a3" + ], + "x-ms-correlation-request-id": [ + "39c146e0-62d8-49c9-a2ae-f53f7d39e5f4" + ], + "x-ms-arm-service-request-id": [ + "2a9d39d6-30f6-4d39-882d-5a4f72552466" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205306Z:39c146e0-62d8-49c9-a2ae-f53f7d39e5f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:53: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Y4MTQ1MTU0LTMzMTktNGEyNS04NzdiLTQ0YzgyNDRiYjhkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a9a66fef-dc1b-4226-8c3f-3d553ec280a5" + ], + "x-ms-correlation-request-id": [ + "3841f7b3-7f38-47e5-964c-4f97df983e7f" + ], + "x-ms-arm-service-request-id": [ + "1a651c36-e574-42c9-999a-cb35a7fbde93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205346Z:3841f7b3-7f38-47e5-964c-4f97df983e7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:53:45 GMT" + ], + "Content-Length": [ + "50" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2Y4MTQ1MTU0LTMzMTktNGEyNS04NzdiLTQ0YzgyNDRiYjhkOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "f8145154-3319-4a25-877b-44c8244bb8d8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/f8145154-3319-4a25-877b-44c8244bb8d8?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "8cb78305-5eca-4364-85fe-eab01f4d50a5" + ], + "x-ms-arm-service-request-id": [ + "c4f404bf-3f0e-42a1-b88b-1a5299edcbaf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205346Z:68e2f5a6-a4cb-4f34-b2b4-7ac21db3a425" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:53:45 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/633a75dc-67fb-4293-ab94-bb75dae9bc9b?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzM2E3NWRjLTY3ZmItNDI5My1hYjk0LWJiNzVkYWU5YmM5Yj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "18354e94-b571-4243-8189-89fad11f1dca" + ], + "x-ms-correlation-request-id": [ + "85b76581-ec1c-4ef4-a946-9449062fe087" + ], + "x-ms-arm-service-request-id": [ + "9f0c1b8f-8658-4132-abee-952f11702f70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205356Z:85b76581-ec1c-4ef4-a946-9449062fe087" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:53:56 GMT" + ], + "Content-Length": [ + "50" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/633a75dc-67fb-4293-ab94-bb75dae9bc9b?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzYzM2E3NWRjLTY3ZmItNDI5My1hYjk0LWJiNzVkYWU5YmM5Yj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/633a75dc-67fb-4293-ab94-bb75dae9bc9b?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "633a75dc-67fb-4293-ab94-bb75dae9bc9b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/633a75dc-67fb-4293-ab94-bb75dae9bc9b?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "ed1a43bd-be8f-485d-93b8-f354562417a6" + ], + "x-ms-arm-service-request-id": [ + "09d1f3e6-bafe-41b2-b268-59eeef62dd27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205356Z:d8a01f2b-2550-4e66-9a58-a77914fbe9a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:53:56 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzI4ZGJkMGZlLTBhYzgtNGQ2OC05MGE2LWJjNzc4OGUwNDg1Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f69e8e1e-b1eb-476c-a168-7d0f70e0da40" + ], + "x-ms-correlation-request-id": [ + "4c748027-b082-4ad6-9d5b-d9cc9e25d704" + ], + "x-ms-arm-service-request-id": [ + "62721645-9b1c-44eb-9a7f-6bcdca2d6e38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205407Z:4c748027-b082-4ad6-9d5b-d9cc9e25d704" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:54: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzI4ZGJkMGZlLTBhYzgtNGQ2OC05MGE2LWJjNzc4OGUwNDg1Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "00d93b3d-2ebf-41dd-8ef6-3c0e58298b32" + ], + "x-ms-correlation-request-id": [ + "a5e137d4-b255-40ee-a026-24d7224effa9" + ], + "x-ms-arm-service-request-id": [ + "2893a5b9-e9d5-4ee2-9edc-14fe7c1d6aa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205417Z:a5e137d4-b255-40ee-a026-24d7224effa9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:54: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzI4ZGJkMGZlLTBhYzgtNGQ2OC05MGE2LWJjNzc4OGUwNDg1Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "e8309a26-789d-47b5-a911-b295f57aad60" + ], + "x-ms-correlation-request-id": [ + "72c5257b-6dd9-4f4d-a321-1addcacdde49" + ], + "x-ms-arm-service-request-id": [ + "c1fce1cd-7fa4-4e84-954c-896af464faad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205437Z:72c5257b-6dd9-4f4d-a321-1addcacdde49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:54: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzI4ZGJkMGZlLTBhYzgtNGQ2OC05MGE2LWJjNzc4OGUwNDg1Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f910c32e-87f5-41f7-9b4f-5368592b3ada" + ], + "x-ms-correlation-request-id": [ + "09c54c80-fa71-43af-af64-ccc5bf0c3c67" + ], + "x-ms-arm-service-request-id": [ + "984823e3-b032-44d5-968e-1e997f8e8c73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205517Z:09c54c80-fa71-43af-af64-ccc5bf0c3c67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:55:16 GMT" + ], + "Content-Length": [ + "50" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzI4ZGJkMGZlLTBhYzgtNGQ2OC05MGE2LWJjNzc4OGUwNDg1Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "28dbd0fe-0ac8-4d68-90a6-bc7788e04857" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/28dbd0fe-0ac8-4d68-90a6-bc7788e04857?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "0bfff5c3-147f-4681-8130-599a040f6fca" + ], + "x-ms-arm-service-request-id": [ + "9c8e906b-0d5c-4c2d-b224-ed5348826840" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205517Z:89189464-4a03-428b-a1c9-28d797f43b1a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:55:17 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08a6acc0-f188-469c-b1a9-357c799e72e3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "50af89b9-5d18-4554-b3fd-d137a2bfaa36" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "a98b9844-7769-42a7-b8db-a8a60c9553e0" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "1269e0a1-4517-4912-99c1-fecd62c721af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205518Z:a98b9844-7769-42a7-b8db-a8a60c9553e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:55:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "adf9e5bf-341c-48f8-b36a-cd2cd526621e" + ], + "x-ms-correlation-request-id": [ + "d540eba7-e60a-4b77-abd0-bd0c2454e1d0" + ], + "x-ms-arm-service-request-id": [ + "a39b3c94-9b26-45c0-8795-5f5f3a0f33ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205528Z:d540eba7-e60a-4b77-abd0-bd0c2454e1d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:55: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "02ce3b34-bb7b-4036-bb2f-ad8142eb2735" + ], + "x-ms-correlation-request-id": [ + "607735c7-e689-47e2-aba8-5bf44f95270d" + ], + "x-ms-arm-service-request-id": [ + "04b94abd-9bb9-42f6-b72f-affe591262a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205538Z:607735c7-e689-47e2-aba8-5bf44f95270d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:55: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "53b999d8-2a2d-423a-bd2e-e3bee5beea32" + ], + "x-ms-correlation-request-id": [ + "95cad6ad-1458-4d73-a842-6d6bc5359acf" + ], + "x-ms-arm-service-request-id": [ + "0557e39b-585a-4322-b31a-71d173c7206c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205558Z:95cad6ad-1458-4d73-a842-6d6bc5359acf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "4db0374f-de07-44db-900a-9b4d8c7013e8" + ], + "x-ms-correlation-request-id": [ + "1b36abd1-c88a-45d1-b2b6-643619257db9" + ], + "x-ms-arm-service-request-id": [ + "780accf3-0818-4e7d-8bba-048f13990611" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205618Z:1b36abd1-c88a-45d1-b2b6-643619257db9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "7ce1497d-6739-4ab1-9a98-72ed526f99c0" + ], + "x-ms-correlation-request-id": [ + "c8850e23-972c-48d3-840b-b3d7dd3bef87" + ], + "x-ms-arm-service-request-id": [ + "fccab45d-5ff2-4565-9ccf-ee0573c34ca9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205658Z:c8850e23-972c-48d3-840b-b3d7dd3bef87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:56: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "b979b2ac-d2e0-4dce-b1c4-f8c735a4958f" + ], + "x-ms-correlation-request-id": [ + "e86cd7f2-f3f8-42f3-8570-5e92da5aeba8" + ], + "x-ms-arm-service-request-id": [ + "42b3969e-09cf-4937-830b-3dae4b5abfd9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205738Z:e86cd7f2-f3f8-42f3-8570-5e92da5aeba8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:57: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "a9d56c37-95ff-4b4b-a170-03ddfddfeb67" + ], + "x-ms-correlation-request-id": [ + "eee71f7b-5147-4d64-890b-58fa320b49cc" + ], + "x-ms-arm-service-request-id": [ + "f5b77de2-9406-4ecf-bc1e-c6a449d4640c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T205918Z:eee71f7b-5147-4d64-890b-58fa320b49cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 20:59: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "eb2a4432-920c-4433-8f61-314852b5e920" + ], + "x-ms-correlation-request-id": [ + "04ff1138-1d8c-42df-a67f-1dbef0db8ed0" + ], + "x-ms-arm-service-request-id": [ + "d4eb033a-91a2-46bb-94bc-74795993198c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T210058Z:04ff1138-1d8c-42df-a67f-1dbef0db8ed0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:00: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "3d38fdd5-9120-4047-acd7-b724cd454855" + ], + "x-ms-correlation-request-id": [ + "e904924b-0c6b-4807-a66c-2e38927ec1bb" + ], + "x-ms-arm-service-request-id": [ + "ea39a76b-971f-4af1-b2dd-f7adaba783f5" + ], + "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": [ + "WESTUS2:20200819T210238Z:e904924b-0c6b-4807-a66c-2e38927ec1bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:02: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "52276d9d-ef8d-4f7d-be24-0a9d8ad8c874" + ], + "x-ms-correlation-request-id": [ + "a75d2ea2-3350-48b7-8e47-58587e7e64aa" + ], + "x-ms-arm-service-request-id": [ + "7c5cfe53-3870-4599-bd2f-ec1a110976e7" + ], + "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": [ + "WESTUS2:20200819T210419Z:a75d2ea2-3350-48b7-8e47-58587e7e64aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:04: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "7ef89b3d-3eca-4564-949e-3b1a1798375a" + ], + "x-ms-correlation-request-id": [ + "848ec22f-9182-44c9-b9f3-d1902b2e8d3d" + ], + "x-ms-arm-service-request-id": [ + "3c5a5f96-1a9d-4ec8-af02-4c19f810e3eb" + ], + "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": [ + "WESTUS2:20200819T210559Z:848ec22f-9182-44c9-b9f3-d1902b2e8d3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:05: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "35101695-ab8a-40b9-b217-2f4bd252c765" + ], + "x-ms-correlation-request-id": [ + "0e3ba992-5601-4a94-8f57-e7bc52402c79" + ], + "x-ms-arm-service-request-id": [ + "7068469f-4365-4c29-9631-2f9fabc55dba" + ], + "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": [ + "WESTUS2:20200819T210739Z:0e3ba992-5601-4a94-8f57-e7bc52402c79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:07: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "10ddea09-b323-43d0-a887-7411e7e0f0a1" + ], + "x-ms-correlation-request-id": [ + "ca4e0611-3a8d-4994-a848-fcb9e65efedf" + ], + "x-ms-arm-service-request-id": [ + "5d723c1c-7d65-4082-98ba-f60cc71dc87d" + ], + "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": [ + "WESTUS2:20200819T210919Z:ca4e0611-3a8d-4994-a848-fcb9e65efedf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:09: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "05687055-9658-47b3-a1aa-21f4f1352855" + ], + "x-ms-correlation-request-id": [ + "8479ff03-416b-4038-933e-1bc3b79ee3cd" + ], + "x-ms-arm-service-request-id": [ + "15ffa63d-8906-4d9f-a0ad-f160267fe4ef" + ], + "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": [ + "WESTUS2:20200819T211059Z:8479ff03-416b-4038-933e-1bc3b79ee3cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:10:59 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzUwYWY4OWI5LTVkMTgtNDU1NC1iM2ZkLWQxMzdhMmJmYWEzNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "50af89b9-5d18-4554-b3fd-d137a2bfaa36" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/50af89b9-5d18-4554-b3fd-d137a2bfaa36?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "a98b9844-7769-42a7-b8db-a8a60c9553e0" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "1269e0a1-4517-4912-99c1-fecd62c721af" + ], + "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": [ + "WESTUS2:20200819T211059Z:e17bfe40-1469-4001-9440-a9180b9766b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:10:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualHubs/ps7785?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3Nzg1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "231a9a56-48e8-4707-ac88-6abbd18f11d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a6d039a9-4f72-4c15-9726-4ac0bcf2df06" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "49074c73-3b49-4ccd-825e-268acd8de6b2" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "3bdd6a86-4a61-4509-a155-c20b5e6e6127" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T211100Z:49074c73-3b49-4ccd-825e-268acd8de6b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:10:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "92d0b37f-c73c-442f-9f9a-4d2b2d53df66" + ], + "x-ms-correlation-request-id": [ + "361daada-f4bd-48c2-abca-bf87731dc4b4" + ], + "x-ms-arm-service-request-id": [ + "aaf42c2d-218e-4e60-9164-fc7d29a757ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T211110Z:361daada-f4bd-48c2-abca-bf87731dc4b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:11:09 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "3b98f70d-4251-439f-b362-db70d98aa1d0" + ], + "x-ms-correlation-request-id": [ + "a44581a4-440e-429c-ab99-f11878150396" + ], + "x-ms-arm-service-request-id": [ + "313fddf6-8a4a-47ea-9849-9cfcda1fc3e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T211120Z:a44581a4-440e-429c-ab99-f11878150396" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:11:19 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "34207a7d-0144-480c-9445-bdcfb360383a" + ], + "x-ms-correlation-request-id": [ + "d0ac47d3-23fb-466b-b27d-f034b5dd86bc" + ], + "x-ms-arm-service-request-id": [ + "79c1528c-8945-47a1-8a9b-42d2897c9004" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T211140Z:d0ac47d3-23fb-466b-b27d-f034b5dd86bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:11: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "c83a2006-8727-45bf-8b3e-89fc375da0e7" + ], + "x-ms-correlation-request-id": [ + "8eb5650e-4fc4-46d8-b2cc-f3888a9ea46d" + ], + "x-ms-arm-service-request-id": [ + "1eadce99-d6fb-41eb-a88b-d3f7063fcd39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T211200Z:8eb5650e-4fc4-46d8-b2cc-f3888a9ea46d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:12: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "39ff5814-6c23-4ae0-9677-d6a5c70c7182" + ], + "x-ms-correlation-request-id": [ + "ca4ac29b-76b8-4aff-88a3-d41382d6ab27" + ], + "x-ms-arm-service-request-id": [ + "8c96ee6a-1672-479b-a1a4-f78fbbccf727" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T211240Z:ca4ac29b-76b8-4aff-88a3-d41382d6ab27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:12: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "9df3fef8-af44-478f-99e3-7e8694fa8774" + ], + "x-ms-correlation-request-id": [ + "42fa6ff2-7552-40d6-91d2-fae92f1f8991" + ], + "x-ms-arm-service-request-id": [ + "d9a2d58b-4f9a-435f-b051-88d784809a82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T211320Z:42fa6ff2-7552-40d6-91d2-fae92f1f8991" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:13: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "a6067ad3-2ca6-4597-b417-50b0660e1230" + ], + "x-ms-correlation-request-id": [ + "746b3cc2-8e64-4706-889f-8abfe03d9e07" + ], + "x-ms-arm-service-request-id": [ + "3b8d4594-f544-4fe0-8b72-96c5945b938c" + ], + "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": [ + "WESTUS2:20200819T211500Z:746b3cc2-8e64-4706-889f-8abfe03d9e07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:15: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "367949d1-47a8-489e-a82f-8d1f3df69ba1" + ], + "x-ms-correlation-request-id": [ + "e2a0633e-214e-416b-a000-014922c7f434" + ], + "x-ms-arm-service-request-id": [ + "0013d0e4-e0fe-43b1-9bbd-52a4b0ed95b0" + ], + "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": [ + "WESTUS2:20200819T211640Z:e2a0633e-214e-416b-a000-014922c7f434" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:16:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "18e56791-78f9-44bb-bf26-3b7a3b88f555" + ], + "x-ms-correlation-request-id": [ + "cf9befff-ca31-472a-8421-7b5699538e9d" + ], + "x-ms-arm-service-request-id": [ + "ad7e4fca-7f10-4a10-83b9-f2570ddac8bb" + ], + "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": [ + "WESTUS2:20200819T211830Z:cf9befff-ca31-472a-8421-7b5699538e9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:18: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2f4de8bd-f4d5-466c-9b48-36c9931a4026" + ], + "x-ms-correlation-request-id": [ + "0fc79f37-fce5-4ba5-9ccd-98107829218b" + ], + "x-ms-arm-service-request-id": [ + "9ec2ba39-4c56-49f9-bb37-ddc864149da2" + ], + "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": [ + "WESTUS2:20200819T212010Z:0fc79f37-fce5-4ba5-9ccd-98107829218b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:20: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/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2E2ZDAzOWE5LTRmNzItNGMxNS05NzI2LTRhYzBiY2YyZGYwNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "a6d039a9-4f72-4c15-9726-4ac0bcf2df06" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/a6d039a9-4f72-4c15-9726-4ac0bcf2df06?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "49074c73-3b49-4ccd-825e-268acd8de6b2" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "3bdd6a86-4a61-4509-a155-c20b5e6e6127" + ], + "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": [ + "WESTUS2:20200819T212010Z:77e652e9-ff93-4175-8911-cd5e20890eb0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:20:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/virtualWans/ps4930?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0OTMwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6482f1a-0f59-4d88-9213-0dcb401a02b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "dfc7d787-0452-4158-8932-2d441cee31d5" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "36e79865-9b53-403e-8560-99778cb941b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T212010Z:dfc7d787-0452-4158-8932-2d441cee31d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:20:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRlM2ZiNDBjLTkyOGYtNGM1OS1hNGViLTFjNWY0ZDZkMzU5Mj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c200f770-78f3-44fc-97c9-a202e7885c0b" + ], + "x-ms-correlation-request-id": [ + "096ab622-2eff-4e9d-8050-17f75d90729d" + ], + "x-ms-arm-service-request-id": [ + "43d16e8d-909d-493d-b399-e6428c5d9a1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T212021Z:096ab622-2eff-4e9d-8050-17f75d90729d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:20:20 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRlM2ZiNDBjLTkyOGYtNGM1OS1hNGViLTFjNWY0ZDZkMzU5Mj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/713.1829.21116.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operationResults/4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/providers/Microsoft.Network/locations/westcentralus/operations/4e3fb40c-928f-4c59-a4eb-1c5f4d6d3592?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "dfc7d787-0452-4158-8932-2d441cee31d5" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "36e79865-9b53-403e-8560-99778cb941b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T212021Z:3b66e5f0-22c8-46e7-878b-b0f044ca1c7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:20:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourcegroups/ps2542?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlZ3JvdXBzL3BzMjU0Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67b49909-cd35-4c7a-8174-d06e604a3800" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "f46a176a-ac70-478f-90fd-12642a865280" + ], + "x-ms-correlation-request-id": [ + "f46a176a-ac70-478f-90fd-12642a865280" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T212021Z:f46a176a-ac70-478f-90fd-12642a865280" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:20:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU5ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "268164f2-5420-4cfa-b578-600242fd7b32" + ], + "x-ms-correlation-request-id": [ + "268164f2-5420-4cfa-b578-600242fd7b32" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T212036Z:268164f2-5420-4cfa-b578-600242fd7b32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:20:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU5ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "6de7454d-57d3-4403-8d5f-050319003046" + ], + "x-ms-correlation-request-id": [ + "6de7454d-57d3-4403-8d5f-050319003046" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T212051Z:6de7454d-57d3-4403-8d5f-050319003046" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:20:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU5ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "16cd7a87-9674-49ab-8f38-8f902aa3bbc3" + ], + "x-ms-correlation-request-id": [ + "16cd7a87-9674-49ab-8f38-8f902aa3bbc3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T212106Z:16cd7a87-9674-49ab-8f38-8f902aa3bbc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:21:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU5ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "5d02b35b-26b3-46d4-b0b8-cecb34e8b215" + ], + "x-ms-correlation-request-id": [ + "5d02b35b-26b3-46d4-b0b8-cecb34e8b215" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T212121Z:5d02b35b-26b3-46d4-b0b8-cecb34e8b215" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:21:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU5ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "960fb7fc-d599-4ba7-836b-fdbfa8fd6268" + ], + "x-ms-correlation-request-id": [ + "960fb7fc-d599-4ba7-836b-fdbfa8fd6268" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T212136Z:960fb7fc-d599-4ba7-836b-fdbfa8fd6268" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:21:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU5ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "bb7bad0a-8d52-4a9c-9e83-e131b91909f5" + ], + "x-ms-correlation-request-id": [ + "bb7bad0a-8d52-4a9c-9e83-e131b91909f5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T212152Z:bb7bad0a-8d52-4a9c-9e83-e131b91909f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:21:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1NDItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU5ESXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "00c02e5d-a189-4084-aa0c-06ea30abf332" + ], + "x-ms-correlation-request-id": [ + "00c02e5d-a189-4084-aa0c-06ea30abf332" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200819T212152Z:00c02e5d-a189-4084-aa0c-06ea30abf332" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 19 Aug 2020 21:21:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-VpnGatewayPacketCapture": [ + "ps2542", + "ps4930", + "ps7785", + "ps3158" + ] + }, + "Variables": { + "SubscriptionId": "79ea0716-8a0e-4e48-a348-e3952d79809e" + } +} \ No newline at end of file diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index 30758b6bd350..20657e23d5cf 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -401,6 +401,10 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate', 'Add-AzVirtualHubRouteTable', 'Get-AzVirtualHubRouteTable', 'Remove-AzVirtualHubRouteTable', 'New-AzVpnGateway', 'Get-AzVpnGateway', 'Update-AzVpnGateway', 'Remove-AzVpnGateway', + 'Start-AzVpnGatewayPacketCapture', + 'Stop-AzVpnGatewayPacketCapture', + 'Start-AzVpnConnectionPacketCapture', + 'Stop-AzVpnConnectionPacketCapture', 'New-AzVpnSite', 'New-AzVpnSiteLink', 'New-AzVpnSiteLinkConnection', 'Get-AzVpnSite', 'Update-AzVpnSite', 'Remove-AzVpnSite', 'New-AzVpnConnection', 'Get-AzVpnConnection', diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 1a74f48fbc12..650f5fb6dbc5 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -34,6 +34,11 @@ - `Update-AzNetworkVirtualAppliance` - `Get-AzNetworkVirtualApplianceSku` - `New-AzVirtualApplianceSkuProperty` +* Added new cmdlets for VirtualWan + - `Start-AzVpnGatewayPacketCapture` + - `Stop-AzVpnGatewayPacketCapture` + - `Start-AzVpnConnectionPacketCapture` + - `Stop-AzVpnConnectionPacketCapture` * Onboard Application Gateway to Private Link Common Cmdlets * Onboard StorageSync to Private Link Common Cmdlets diff --git a/src/Network/Network/Cortex/VpnConnection/StartAzVpnConnectionPacketCaptureCommand.cs b/src/Network/Network/Cortex/VpnConnection/StartAzVpnConnectionPacketCaptureCommand.cs new file mode 100644 index 000000000000..6143fffdf9c7 --- /dev/null +++ b/src/Network/Network/Cortex/VpnConnection/StartAzVpnConnectionPacketCaptureCommand.cs @@ -0,0 +1,159 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.Network.Models; +using Microsoft.Azure.Commands.Network.Models.Cortex; +using System.Linq; + +namespace Microsoft.Azure.Commands.Network.Cortex.VpnConnection +{ + [Cmdlet("Start", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VpnConnectionPacketCapture", + DefaultParameterSetName = CortexParameterSetNames.ByVpnConnectionName + , SupportsShouldProcess = true) + , OutputType(typeof(PSVpnConnectionPacketCaptureResult))] + public class StartAzVpnConnectionPacketCaptureCommand : VpnConnectionBaseCmdlet + { + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnConnectionName, + Mandatory = true, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("ParentVpnGatewayName", "VpnGatewayName")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVpnConnectionName, + HelpMessage = "The parent Vpn Gateway resource name.")] + [ResourceNameCompleter("Microsoft.Network/vpnGateways", "ResourceGroupName")] + [ValidateNotNullOrEmpty] + public string ParentResourceName { get; set; } + + [Alias("ResourceName", "VpnConnectionName", "ConnectionName")] + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnConnectionName, + Mandatory = true, + HelpMessage = "The Vpn connection name where packet capture to be started.")] + [ResourceNameCompleter("Microsoft.Network/vpnGateways/vpnConnections", "ResourceGroupName", "ParentResourceName")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Alias("VpnConnection")] + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnConnectionObject, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The Vpn connection object where packet capture to be started.")] + [ValidateNotNullOrEmpty] + public PSVpnConnection InputObject { get; set; } + + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnConnectionResourceId, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Azure resource ID of the VpnConnection where packet capture to be started.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Filter options for start packet capture on Vpn connection.")] + public string FilterData { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "VpnSiteLink Name of Vpn Connection to start packet capture on Vpn connection.")] + public string LinkConnectionName { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + public override void Execute() + { + if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnConnectionName, StringComparison.OrdinalIgnoreCase)) + { + this.ResourceGroupName = this.ResourceGroupName; + this.ParentResourceName = this.ParentResourceName; + this.Name = this.Name; + } + else if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnConnectionObject, StringComparison.OrdinalIgnoreCase)) + { + this.ResourceId = this.InputObject.Id; + + if (string.IsNullOrWhiteSpace(this.ResourceId)) + { + throw new PSArgumentException(Properties.Resources.VpnConnectionNotFound); + } + + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.ParentResourceName = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).Last(); + this.Name = parsedResourceId.ResourceName; + } + + //// Get the vpngateway object - this will throw not found if the object is not found + PSVpnGateway parentGateway = this.GetVpnGateway(this.ResourceGroupName, this.ParentResourceName); + + if (parentGateway == null || + parentGateway.Connections == null || + !parentGateway.Connections.Any(connection => connection.Name.Equals(this.Name, StringComparison.OrdinalIgnoreCase))) + { + throw new PSArgumentException(Properties.Resources.VpnConnectionNotFound); + } + + var existingConnection = parentGateway.Connections.FirstOrDefault(connection => connection.Name.Equals(this.Name, StringComparison.OrdinalIgnoreCase)); + + VpnConnectionPacketCaptureStartParameters parameters = new VpnConnectionPacketCaptureStartParameters(); + + if (this.FilterData != null) + { + parameters.FilterData = FilterData; + } + + if (this.LinkConnectionName != null) + { + parameters.LinkConnectionNames = LinkConnectionName.Split(',').Select(x => x.Trim()).ToList(); + } + + base.Execute(); + + if (ShouldProcess(this.Name, String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name))) + { + WriteVerbose(String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name)); + PSVpnConnectionPacketCaptureResult output = new PSVpnConnectionPacketCaptureResult() + { + Name = existingConnection.Name, + ResourceGroupName = parentGateway.ResourceGroupName, + Tag = parentGateway.Tag, + ResourceGuid = existingConnection.Id, + Location = parentGateway.Location, + LinkConnectionName = this.LinkConnectionName + }; + output.StartTime = DateTime.UtcNow; + var result = this.VpnConnectionClient.StartPacketCapture(this.ResourceGroupName, ParentResourceName, this.Name, parameters); + output.EndTime = DateTime.UtcNow; + WriteObject(output); + } + } + } +} \ No newline at end of file diff --git a/src/Network/Network/Cortex/VpnConnection/StopAzVpnConnectionPacketCaptureCommand.cs b/src/Network/Network/Cortex/VpnConnection/StopAzVpnConnectionPacketCaptureCommand.cs new file mode 100644 index 000000000000..0882d486e2f6 --- /dev/null +++ b/src/Network/Network/Cortex/VpnConnection/StopAzVpnConnectionPacketCaptureCommand.cs @@ -0,0 +1,154 @@ +// 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 System; +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.Network.Models; +using Microsoft.Azure.Commands.Network.Models.Cortex; +using System.Linq; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet("Stop", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VpnConnectionPacketCapture", + DefaultParameterSetName = CortexParameterSetNames.ByVpnConnectionName, SupportsShouldProcess = true), OutputType(typeof(PSVpnConnectionPacketCaptureResult))] + public class StopAzVpnConnectionPacketCaptureCommand : VpnConnectionBaseCmdlet + { + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnConnectionName, + Mandatory = true, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("ParentVpnGatewayName", "VpnGatewayName")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVpnConnectionName, + HelpMessage = "The parent resource name.")] + [ResourceNameCompleter("Microsoft.Network/vpnGateways", "ResourceGroupName")] + [ValidateNotNullOrEmpty] + public string ParentResourceName { get; set; } + + [Alias("ResourceName", "ConnectionName")] + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnConnectionName, + Mandatory = true, + HelpMessage = "The Vpn connection name where packet capture is to be started.")] + [ResourceNameCompleter("Microsoft.Network/connections", "ResourceGroupName")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Alias("VpnConnection")] + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnConnectionObject, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The Vpn connection object where packet capture to be started.")] + [ValidateNotNullOrEmpty] + public PSVpnConnection InputObject { get; set; } + + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnConnectionResourceId, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Azure resource ID of the VpnConnection where packet capture to be started.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "VpnSiteLink of Vpn Connection to start packet capture on Vpn connection.")] + public string LinkConnectionName { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "SAS Url for stop packet capture on Vpn.")] + public string SasUrl { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + public override void Execute() + { + if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnConnectionName, StringComparison.OrdinalIgnoreCase)) + { + this.ResourceGroupName = this.ResourceGroupName; + this.ParentResourceName = this.ParentResourceName; + this.Name = this.Name; + } + else if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnConnectionObject, StringComparison.OrdinalIgnoreCase)) + { + this.ResourceId = this.InputObject.Id; + + if (string.IsNullOrWhiteSpace(this.ResourceId)) + { + throw new PSArgumentException(Properties.Resources.VpnConnectionNotFound); + } + + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.ParentResourceName = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).Last(); + this.Name = parsedResourceId.ResourceName; + } + + //// Get the vpngateway object - this will throw not found if the object is not found + PSVpnGateway parentGateway = this.GetVpnGateway(this.ResourceGroupName, this.ParentResourceName); + + if (parentGateway == null || + parentGateway.Connections == null || + !parentGateway.Connections.Any(connection => connection.Name.Equals(this.Name, StringComparison.OrdinalIgnoreCase))) + { + throw new PSArgumentException(Properties.Resources.VpnConnectionNotFound); + } + + VpnConnectionPacketCaptureStopParameters parameters = new VpnConnectionPacketCaptureStopParameters(); + + if (this.SasUrl != null) + { + parameters.SasUrl = SasUrl; + } + if (this.LinkConnectionName != null) + { + parameters.LinkConnectionNames = LinkConnectionName.Split(',').Select(x => x.Trim()).ToList(); + } + + var existingConnection = parentGateway.Connections.FirstOrDefault(connection => connection.Name.Equals(this.Name, StringComparison.OrdinalIgnoreCase)); + + base.Execute(); + + if (ShouldProcess(this.Name, String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name))) + { + WriteVerbose(String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name)); + PSVpnConnectionPacketCaptureResult output = new PSVpnConnectionPacketCaptureResult() + { + Name = existingConnection.Name, + ResourceGroupName = parentGateway.ResourceGroupName, + Tag = parentGateway.Tag, + ResourceGuid = existingConnection.Id, + Location = parentGateway.Location, + LinkConnectionName = this.LinkConnectionName + }; + output.StartTime = DateTime.UtcNow; + var result = this.VpnConnectionClient.StopPacketCapture(this.ResourceGroupName, ParentResourceName, this.Name, parameters); + output.EndTime = DateTime.UtcNow; + WriteObject(output); + } + } + } +} \ No newline at end of file diff --git a/src/Network/Network/Cortex/VpnGateway/StartAzVpnGatewayPacketCaptureCommand.cs b/src/Network/Network/Cortex/VpnGateway/StartAzVpnGatewayPacketCaptureCommand.cs new file mode 100644 index 000000000000..267bc78885e4 --- /dev/null +++ b/src/Network/Network/Cortex/VpnGateway/StartAzVpnGatewayPacketCaptureCommand.cs @@ -0,0 +1,111 @@ +using Microsoft.Azure.Commands.Network.Models; +using Microsoft.Azure.Commands.Network.Models.Cortex; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Management.Network.Models; +using System; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Network.Cortex.VpnGateway +{ + [Cmdlet("Start", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VpnGatewayPacketCapture", + DefaultParameterSetName = CortexParameterSetNames.ByVpnGatewayName, SupportsShouldProcess = true), OutputType(typeof(PSVpnGatewayPacketCaptureResult))] + public class StartAzVpnGatewayPacketCaptureCommand : VpnGatewayBaseCmdlet + { + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnGatewayName, + Mandatory = true, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("ResourceName", "VpnGatewayName", "GatewayName")] + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnGatewayName, + Mandatory = true, + HelpMessage = "The vpn gateway name where packet capture is to be started.")] + [ResourceNameCompleter("Microsoft.Network/vpnGateways", "ResourceGroupName")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Alias("VpnGateway")] + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnGatewayObject, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The vpn gateway object where packet capture to be started.")] + [ValidateNotNullOrEmpty] + public PSVpnGateway InputObject { get; set; } + + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnGatewayResourceId, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Azure resource ID of the VirtualNetworkGateway where packet capture to be started.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Filter options for start packet capture on vpn gateway.")] + public string FilterData { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + public override void Execute() + { + PSVpnGateway existingVpnGateway = null; + if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnGatewayObject)) + { + existingVpnGateway = this.InputObject; + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.Name = this.InputObject.Name; + } + else + { + if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnGatewayResourceId)) + { + var parsedResourceId = new ResourceIdentifier(ResourceId); + Name = parsedResourceId.ResourceName; + ResourceGroupName = parsedResourceId.ResourceGroupName; + } + + existingVpnGateway = this.GetVpnGateway(this.ResourceGroupName, this.Name); + } + + if (existingVpnGateway == null) + { + throw new PSArgumentException(Properties.Resources.VpnGatewayNotFound); + } + + VpnGatewayPacketCaptureStartParameters parameters = new VpnGatewayPacketCaptureStartParameters(); + if (this.FilterData != null) + { + parameters.FilterData = FilterData; + } + + base.Execute(); + if (ShouldProcess(this.Name, String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name))) + { + WriteVerbose(String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name)); + PSVpnGatewayPacketCaptureResult output = new PSVpnGatewayPacketCaptureResult() + { + Name = existingVpnGateway.Name, + ResourceGroupName = existingVpnGateway.ResourceGroupName, + Tag = existingVpnGateway.Tag, + ResourceGuid = existingVpnGateway.ResourceGuid, + Location = existingVpnGateway.Location, + }; + output.StartTime = DateTime.UtcNow; + var result = this.VpnGatewayClient.StartPacketCapture(this.ResourceGroupName, this.Name, parameters); + output.EndTime = DateTime.UtcNow; + WriteObject(output); + } + } + } +} diff --git a/src/Network/Network/Cortex/VpnGateway/StopAzVpnGatewayPacketCaptureCommand.cs b/src/Network/Network/Cortex/VpnGateway/StopAzVpnGatewayPacketCaptureCommand.cs new file mode 100644 index 000000000000..001e63b2312d --- /dev/null +++ b/src/Network/Network/Cortex/VpnGateway/StopAzVpnGatewayPacketCaptureCommand.cs @@ -0,0 +1,111 @@ +using Microsoft.Azure.Commands.Network.Models; +using Microsoft.Azure.Commands.Network.Models.Cortex; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Management.Network.Models; +using System; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Network.Cortex.VpnGateway +{ + [Cmdlet("Stop", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VpnGatewayPacketCapture", + DefaultParameterSetName = CortexParameterSetNames.ByVpnGatewayName, SupportsShouldProcess = true), OutputType(typeof(PSVpnGatewayPacketCaptureResult))] + public class StopAzVpnGatewayPacketCaptureCommand : VpnGatewayBaseCmdlet + { + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnGatewayName, + Mandatory = true, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("ResourceName", "VpnGatewayName", "GatewayName")] + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnGatewayName, + Mandatory = true, + HelpMessage = "The vpn gateway name where packet capture to be started.")] + [ResourceNameCompleter("Microsoft.Network/VpnGateways", "ResourceGroupName")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Alias("VpnGateway")] + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnGatewayObject, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The vpn gateway object where packet capture to be started.")] + [ValidateNotNullOrEmpty] + public PSVpnGateway InputObject { get; set; } + + [Parameter( + ParameterSetName = CortexParameterSetNames.ByVpnGatewayResourceId, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The Azure resource ID of the VpnGateway where packet capture to be started.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "SAS URL packet capture on vpn gateway.")] + public string SasUrl { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + public override void Execute() + { + PSVpnGateway existingVpnGateway = null; + if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnGatewayObject)) + { + existingVpnGateway = this.InputObject; + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.Name = this.InputObject.Name; + } + else + { + if (ParameterSetName.Equals(CortexParameterSetNames.ByVpnGatewayResourceId)) + { + var parsedResourceId = new ResourceIdentifier(ResourceId); + Name = parsedResourceId.ResourceName; + ResourceGroupName = parsedResourceId.ResourceGroupName; + } + + existingVpnGateway = this.GetVpnGateway(this.ResourceGroupName, this.Name); + } + + if (existingVpnGateway == null) + { + throw new PSArgumentException(Properties.Resources.VpnGatewayNotFound); + } + + VpnGatewayPacketCaptureStopParameters parameters = new VpnGatewayPacketCaptureStopParameters(); + if (this.SasUrl != null) + { + parameters.SasUrl = SasUrl; + } + + base.Execute(); + if (ShouldProcess(this.Name, String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name))) + { + WriteVerbose(String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name)); + PSVpnGatewayPacketCaptureResult output = new PSVpnGatewayPacketCaptureResult() + { + Name = existingVpnGateway.Name, + ResourceGroupName = existingVpnGateway.ResourceGroupName, + Tag = existingVpnGateway.Tag, + ResourceGuid = existingVpnGateway.ResourceGuid, + Location = existingVpnGateway.Location, + }; + output.StartTime = DateTime.UtcNow; + var result = this.VpnGatewayClient.StopPacketCapture(this.ResourceGroupName, this.Name, parameters); + output.EndTime = DateTime.UtcNow; + WriteObject(output); + } + } + } +} diff --git a/src/Network/Network/Models/Cortex/PSVpnConnectionPacketCaptureResult.cs b/src/Network/Network/Models/Cortex/PSVpnConnectionPacketCaptureResult.cs new file mode 100644 index 000000000000..34edb0683cbf --- /dev/null +++ b/src/Network/Network/Models/Cortex/PSVpnConnectionPacketCaptureResult.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Azure.Commands.Network.Models.Cortex +{ + class PSVpnConnectionPacketCaptureResult : PSTopLevelResource + { + public string Code { get; set; } + + public DateTime EndTime { get; set; } + + public DateTime StartTime { get; set; } + + public string ResultsText { get; set; } + + public string LinkConnectionName { get; set; } + + public PSVpnConnectionPacketCaptureResult() + { + this.Code = "Succeeded"; + } + + } +} diff --git a/src/Network/Network/Models/Cortex/PSVpnGatewayPacketCaptureResult.cs b/src/Network/Network/Models/Cortex/PSVpnGatewayPacketCaptureResult.cs new file mode 100644 index 000000000000..ea6f8470e8d6 --- /dev/null +++ b/src/Network/Network/Models/Cortex/PSVpnGatewayPacketCaptureResult.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Azure.Commands.Network.Models.Cortex +{ + class PSVpnGatewayPacketCaptureResult : PSTopLevelResource + { + public string Code { get; set; } + + public DateTime EndTime { get; set; } + + public DateTime StartTime { get; set; } + + public string ResultsText { get; set; } + + public PSVpnGatewayPacketCaptureResult() + { + this.Code = "Succeeded"; + } + } +} diff --git a/src/Network/Network/help/Start-AzVpnConnectionPacketCapture.md b/src/Network/Network/help/Start-AzVpnConnectionPacketCapture.md new file mode 100644 index 000000000000..1ab224eb2393 --- /dev/null +++ b/src/Network/Network/help/Start-AzVpnConnectionPacketCapture.md @@ -0,0 +1,264 @@ +--- +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/start-azvpnconnectionpacketcapture +schema: 2.0.0 +--- + +# Start-AzVpnConnectionPacketCapture + +## SYNOPSIS +Starts Packet Capture Operation on a Vpn Connection. + +## SYNTAX + +### ByVpnConnectionName (Default) +``` +Start-AzVpnConnectionPacketCapture -ResourceGroupName -ParentResourceName -Name + [-FilterData ] [-LinkConnectionName ] [-AsJob] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByVpnConnectionObject +``` +Start-AzVpnConnectionPacketCapture -InputObject [-FilterData ] + [-LinkConnectionName ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByVpnConnectionResourceId +``` +Start-AzVpnConnectionPacketCapture -ResourceId [-FilterData ] [-LinkConnectionName ] + [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Starts Packet Capture Operation on a Vpn Connection. + +## EXAMPLES + +### Example 1 +```powershell +Start-AzVpnConnectionPacketCapture -ResourceGroupName "PktCaptureTestSite2RG" -Name "PktCaptureTestSite2Site1Cn" -ParentResourceName "VpnGw1" -LinkConnectionName "PktCaptureTestSite2Site1CnLink1" +Code : Succeeded +EndTime : 10/1/2019 12:52:37 AM +StartTime : 10/1/2019 12:52:25 AM +ResultsText : +LinkConnectionName: PktCaptureTestSite2Site1CnLink1 +ResourceGroupName : PktCaptureTestSite2RG +Location : centraluseuap +ResourceGuid : ac70028f-5b88-4ad4-93d3-0b9a9172c382 +Type : +Tag : +TagsTable : +Name : PktCaptureTestSite2Site1Cn +Etag : +Id : +``` + +### Example 2 +```powershell +$a="{`"TracingFlags`":11,`"MaxPacketBufferSize`":120,`"MaxFileSize`":500,`"Filters`":[{`"SourceSubnets`":[`"10.19.0.4/32`",`"10.20.0.4/32`"],`"DestinationSubnets`":[`"10.20.0.4/32`",`"10.19.0.4/32`"],`"IpSubnetValueAsAny`":true,`"TcpFlags`":-1,`"PortValueAsAny`":true,`"CaptureSingleDirectionTrafficOnly`":true}]}" +Start-AzVpnConnectionPacketCapture -ResourceGroupName "PktCaptureTestSite2RG" -Name "PktCaptureTestSite2Site1Cn" -ParentResourceName "VpnGw1" -LinkConnectionName "PktCaptureTestSite2Site1CnLink1,PktCaptureTestSite2Site1CnLink1" -FilterData $a +Code : Succeeded +EndTime : 10/1/2019 12:52:37 AM +StartTime : 10/1/2019 12:52:25 AM +ResultsText : +LinkConnectionName: PktCaptureTestSite2Site1CnLink1,PktCaptureTestSite2Site1CnLink1 +ResourceGroupName : PktCaptureTestSite2RG +Location : centraluseuap +ResourceGuid : ac70028f-5b88-4ad4-93d3-0b9a9172c382 +Type : +Tag : +TagsTable : +Name : PktCaptureTestSite2Site1Cn +Etag : +Id : +``` + +## 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 +``` + +### -FilterData +Filter options for start packet capture on Vpn connection. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The Vpn connection object where packet capture to be started. + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSVpnConnection +Parameter Sets: ByVpnConnectionObject +Aliases: VpnConnection + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -LinkConnectionName +The names of the SiteLinkConnection. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The Vpn connection name where packet capture to be started. + +```yaml +Type: System.String +Parameter Sets: ByVpnConnectionName +Aliases: ResourceName, VpnConnectionName, ConnectionName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ParentResourceName +The name of the Parent Vpngateway. + +```yaml +Type: System.String +Parameter Sets: ByVpnConnectionName +Aliases: ParentVpnGatewayName, VpnGatewayName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: System.String +Parameter Sets: ByVpnConnectionName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The Azure resource ID of the VpnConnection where packet capture to be started. + +```yaml +Type: System.String +Parameter Sets: ByVpnConnectionResourceId +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 + +### Microsoft.Azure.Commands.Network.Models.PSVpnConnection + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSVpnConnectionPacketCaptureResult + +## NOTES + +## RELATED LINKS + +[Stop-AzVpnConnectionPacketCapture](./Stop-AzVpnConnectionPacketCapture.md) \ No newline at end of file diff --git a/src/Network/Network/help/Start-AzVpnGatewayPacketCapture.md b/src/Network/Network/help/Start-AzVpnGatewayPacketCapture.md new file mode 100644 index 000000000000..0ab41bf2ea87 --- /dev/null +++ b/src/Network/Network/help/Start-AzVpnGatewayPacketCapture.md @@ -0,0 +1,230 @@ +--- +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/Start-AzVpnGatewayPacketCapture +schema: 2.0.0 +--- + +# Start-AzVpnGatewayPacketCapture + +## SYNOPSIS +Starts Packet Capture Operation on a Vpn Gateway. + +## SYNTAX + +### ByVpnGatewayName (Default) +``` +Start-AzVpnGatewayPacketCapture -ResourceGroupName -Name [-FilterData ] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVpnGatewayObject +``` +Start-AzVpnGatewayPacketCapture -InputObject [-FilterData ] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVpnGatewayResourceId +``` +Start-AzVpnGatewayPacketCapture -ResourceId [-FilterData ] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Starts Packet Capture Operation on a Vpn Gateway. + +## EXAMPLES + +### Example 1 +```powershell +Start-AzVpnGatewayPacketCapture -ResourceGroupName "PktCaptureTestSite2RG" -Name "PktCaptureTestSite2VNG" +Code : Succeeded +EndTime : 10/1/2019 12:57:27 AM +StartTime : 10/1/2019 12:57:16 AM +ResultsText : +ResourceGroupName : PktCaptureTestSite2RG +Location : centraluseuap +ResourceGuid : 161c0fff-f3fd-4698-9ab3-8ca9470de975 +Type : +Tag : +TagsTable : +Name : PktCaptureTestSite2VNG +Etag : +Id : +``` + +### Example 2 +```powershell +$a="{`"TracingFlags`":11,`"MaxPacketBufferSize`":120,`"MaxFileSize`":500,`"Filters`":[{`"SourceSubnets`":[`"10.19.0.4/32`",`"10.20.0.4/32`"],`"DestinationSubnets`":[`"10.20.0.4/32`",`"10.19.0.4/32`"],`"TcpFlags`":-1,`"Protocol`":[6],`"CaptureSingleDirectionTrafficOnly`":true}]}" +Start-AzVpnGatewayPacketCapture -ResourceGroupName "PktCaptureTestSite2RG" -Name "PktCaptureTestSite2VNG" -FilterData $a +Code : Succeeded +EndTime : 10/1/2019 12:57:27 AM +StartTime : 10/1/2019 12:57:16 AM +ResultsText : +ResourceGroupName : PktCaptureTestSite2RG +Location : centraluseuap +ResourceGuid : 161c0fff-f3fd-4698-9ab3-8ca9470de975 +Type : +Tag : +TagsTable : +Name : PktCaptureTestSite2VNG +Etag : +Id : +``` + +## 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 +``` + +### -FilterData +Filter options for start packet capture on Vpn Gateway. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The Vpn Gateway object where packet capture to be started. + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSVpnGateway +Parameter Sets: ByVpnGatewayObject +Aliases: VpnGateway + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The Vpn Gateway name where packet capture is to be started. + +```yaml +Type: System.String +Parameter Sets: ByVpnGatewayName +Aliases: ResourceName, VpnGatewayName, GatewayName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: System.String +Parameter Sets: ByVpnGatewayName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The Azure resource ID of the VpnGateway where packet capture to be started. + +```yaml +Type: System.String +Parameter Sets: ByVpnGatewayResourceId +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 + +### Microsoft.Azure.Commands.Network.Models.PSVpnGateway + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSVpnGatewayPacketCaptureResult + +## NOTES + +## RELATED LINKS + +[Stop-AzVpnGatewayPacketCapture](./Stop-AzVpnGatewayPacketCapture.md) \ No newline at end of file diff --git a/src/Network/Network/help/Stop-AzVpnConnectionPacketCapture.md b/src/Network/Network/help/Stop-AzVpnConnectionPacketCapture.md new file mode 100644 index 000000000000..c81ed3d2d606 --- /dev/null +++ b/src/Network/Network/help/Stop-AzVpnConnectionPacketCapture.md @@ -0,0 +1,280 @@ +--- +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/stop-azvpnconnectionpacketcapture +schema: 2.0.0 +--- + +# Stop-AzVpnConnectionPacketCapture + +## SYNOPSIS +Stops Packet Capture Operation on a Vpn connection + +## SYNTAX + +### ByVpnConnectionName (Default) +``` +Stop-AzVpnConnectionPacketCapture -ResourceGroupName -ParentResourceName -Name + [-LinkConnectionName ] -SasUrl [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByVpnConnectionObject +``` +Stop-AzVpnConnectionPacketCapture -InputObject [-LinkConnectionName ] + -SasUrl [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVpnConnectionResourceId +``` +Stop-AzVpnConnectionPacketCapture -ResourceId [-LinkConnectionName ] -SasUrl [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Stops Packet Capture Operation on a Vpn connection and will upload the result on given SasUrl of storage container. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $rgname = "testRg" + $storeName = "teststorage" + $containerName = "packetcaptureresults" + $key = Get-AzStorageAccountKey -ResourceGroupName $rgname -Name $storeName + $context = New-AzStorageContext -StorageAccountName $storeName -StorageAccountKey $key[0].Value + New-AzStorageContainer -Name $containerName -Context $context + $container = Get-AzStorageContainer -Name $containerName -Context $context + $now=get-date + $sasurl = New-AzureStorageContainerSASToken -Name $containerName -Context $context -Permission "rwd" -StartTime $now.AddHours(-1) -ExpiryTime $now.AddDays(1) -FullUri +PS C:\> Stop-AzVpnConnectionPacketCapture -ResourceGroupName $rgname -Name "testconn" -ParentResourceName "VpnGw1" -LinkConnectionName "SiteLink1,SiteLink2" -SasUrl $sasurl +Code : Succeeded +EndTime : 10/1/2019 12:54:51 AM +StartTime : 10/1/2019 12:53:40 AM +ResultsText : +LinkConnectionName: SiteLink1,SiteLink2 +ResourceGroupName : testRg +Location : centraluseuap +ResourceGuid : ac70028f-5b88-4ad4-93d3-0b9a9172c382 +Type : +Tag : +TagsTable : +Name : testconn +Etag : +Id : +``` + +### Example 2 +```powershell +PS C:\> $rgname = "testRg" + $storeName = "teststorage" + $containerName = "packetcaptureresults" + $key = Get-AzStorageAccountKey -ResourceGroupName $rgname -Name $storeName + $context = New-AzStorageContext -StorageAccountName $storeName -StorageAccountKey $key[0].Value + $container = Get-AzStorageContainer -Name $containerName -Context $context + $now=get-date + $sasurl = New-AzureStorageContainerSASToken -Name $containerName -Context $context -Permission "rwd" -StartTime $now.AddHours(-1) -ExpiryTime $now.AddDays(1) -FullUri + $conn = Get-AzVpnConnection -name "testconn" -ResourceGroupName $rgname +PS C:\> Stop-AzVpnConnectionPacketCapture -InputObject $conn -SasUrl $sasurl -LinkConnectionName "SiteLink1,SiteLink2" +Code : Succeeded +EndTime : 10/1/2019 12:54:51 AM +StartTime : 10/1/2019 12:53:40 AM +ResultsText : +LinkConnectionName: SiteLink1,SiteLink2 +ResourceGroupName : testRg +Location : centraluseuap +ResourceGuid : ac70028f-5b88-4ad4-93d3-0b9a9172c382 +Type : +Tag : +TagsTable : +Name : testconn +Etag : +Id : +``` + +## 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 +``` + +### -InputObject +The Vpn connection object where packet capture to be started. + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSVpnConnection +Parameter Sets: ByVpnConnectionObject +Aliases: VpnConnection + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -LinkConnectionName +The names of the SiteLinkConnection. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The Vpn connection name where packet capture is to be started. + +```yaml +Type: System.String +Parameter Sets: ByVpnConnectionName +Aliases: ResourceName, ConnectionName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ParentResourceName +The parent resource name. + +```yaml +Type: System.String +Parameter Sets: ByVpnConnectionName +Aliases: ParentVpnGatewayName, VpnGatewayName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: System.String +Parameter Sets: ByVpnConnectionName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The Azure resource ID of the VpnConnection where packet capture to be started. + +```yaml +Type: System.String +Parameter Sets: ByVpnConnectionResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SasUrl +SAS Url for stop packet capture on Vpn. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +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 + +### Microsoft.Azure.Commands.Network.Models.PSVpnConnection + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSVpnPacketCaptureResult + +## NOTES + +## RELATED LINKS + +[Start-AzVpnConnectionPacketCapture](./Start-AzVpnConnectionPacketCapture.md) \ No newline at end of file diff --git a/src/Network/Network/help/Stop-AzVpnGatewayPacketCapture.md b/src/Network/Network/help/Stop-AzVpnGatewayPacketCapture.md new file mode 100644 index 000000000000..2c0098af2da7 --- /dev/null +++ b/src/Network/Network/help/Stop-AzVpnGatewayPacketCapture.md @@ -0,0 +1,247 @@ +--- +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/Stop-AzVpnGatewayPacketCapture +schema: 2.0.0 +--- + +# Stop-AzVpnGatewayPacketCapture + +## SYNOPSIS +Stops Packet Capture Operation on a Vpn Gateway. + +## SYNTAX + +### ByVpnGatewayName (Default) +``` +Stop-AzVpnGatewayPacketCapture -ResourceGroupName -Name -SasUrl [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVpnGatewayObject +``` +Stop-AzVpnGatewayPacketCapture -InputObject -SasUrl [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVpnGatewayResourceId +``` +Stop-AzVpnGatewayPacketCapture -ResourceId -SasUrl [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Stops Packet Capture Operation on a Vpn Gateway and will upload the result on given SasUrl of storage container. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $rgname = "testRg" + $storeName = "teststorage" + $containerName = "packetcaptureresults" + $key = Get-AzStorageAccountKey -ResourceGroupName $rgname -Name $storeName + $context = New-AzStorageContext -StorageAccountName $storeName -StorageAccountKey $key[0].Value + New-AzStorageContainer -Name $containerName -Context $context + $container = Get-AzStorageContainer -Name $containerName -Context $context + $now=get-date + $sasurl = New-AzureStorageContainerSASToken -Name $containerName -Context $context -Permission "rwd" -StartTime $now.AddHours(-1) -ExpiryTime $now.AddDays(1) -FullUri +PS C:\> Stop-AzVpnGatewayPacketCapture -ResourceGroupName $rgname -Name "testgw" -SasUrl $sasurl +Code : Succeeded +EndTime : 10/1/2019 12:59:37 AM +StartTime : 10/1/2019 12:58:26 AM +ResultsText : +ResourceGroupName : testRg +Location : centraluseuap +ResourceGuid : 161c0fff-f3fd-4698-9ab3-8ca9470de975 +Type : +Tag : +TagsTable : +Name : testgw +Etag : +Id : +``` + +### Example 2 +```powershell +PS C:\> $rgname = "testRg" + $storeName = "teststorage" + $containerName = "packetcaptureresults" + $key = Get-AzStorageAccountKey -ResourceGroupName $rgname -Name $storeName + $context = New-AzStorageContext -StorageAccountName $storeName -StorageAccountKey $key[0].Value + $container = Get-AzStorageContainer -Name $containerName -Context $context + $now=get-date + $sasurl = New-AzureStorageContainerSASToken -Name $containerName -Context $context -Permission "rwd" -StartTime $now.AddHours(-1) -ExpiryTime $now.AddDays(1) -FullUri + $gw = Get-AzVpnGateway -ResourceGroupName $rgname -name "testGw" +PS C:\> Stop-AzVpnGatewayPacketCapture -InputObject $gw -SasUrl $sasurl +Code : Succeeded +EndTime : 10/1/2019 12:59:37 AM +StartTime : 10/1/2019 12:58:26 AM +ResultsText : +ResourceGroupName : testRg +Location : centraluseuap +ResourceGuid : 161c0fff-f3fd-4698-9ab3-8ca9470de975 +Type : +Tag : +TagsTable : +Name : testgw +Etag : +Id : +``` + +## 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 +``` + +### -InputObject +The Vpn Gateway object where packet capture to be started. + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSVpnGateway +Parameter Sets: ByVpnGatewayObject +Aliases: VpnGateway + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The Vpn Gateway name where packet capture to be started. + +```yaml +Type: System.String +Parameter Sets: ByVpnGatewayName +Aliases: ResourceName, VpnGatewayName, GatewayName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: System.String +Parameter Sets: ByVpnGatewayName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The Azure resource ID of the VpnGateway where packet capture to be started. + +```yaml +Type: System.String +Parameter Sets: ByVpnGatewayResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SasUrl +SAS URL packet capture on Vpn Gateway. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +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 + +### Microsoft.Azure.Commands.Network.Models.PSVpnGateway + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSVpnGatewayPacketCaptureResult + +## NOTES + +## RELATED LINKS + +[Start-AzVpnGatewayPacketCapture](./Start-AzVpnGatewayPacketCapture.md) \ No newline at end of file From 1f3906da41e07cb357d4cbd03dc1a720b5f79c27 Mon Sep 17 00:00:00 2001 From: Jiacheng Zhu Date: Sun, 30 Aug 2020 23:29:15 -0700 Subject: [PATCH 2/2] add security --- .../TestVpnGatewayPacketCapture.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnGatewayPacketCapture.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnGatewayPacketCapture.json index 781e24fd9fde..226a44a6ebff 100644 --- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnGatewayPacketCapture.json +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVpnGatewayPacketCapture.json @@ -3461,6 +3461,7 @@ "-1" ] }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"UG+r5LOMB0MsK9BgJnjkPAUfOtsDN6Mk6oNU0WViHeOfj9/Ac3yUqy0QLzEmRQ/tK8LTgmqaygvznBe1gt2otA==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"ICjwCmc3YREDmUyzlccxCrCLWaWfvWAUWRiMd3Bj8HRV/BV6DWNrE5E3XvUIieJa/25m7VcVrt3YOBzMDnmA8A==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, @@ -3754,6 +3755,7 @@ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158/stoppacketcapture?api-version=2020-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4L3N0b3BwYWNrZXRjYXB0dXJlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "POST", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"sasUrl\": \"https://stops2542.blob.core.windows.net/testcontainer?sv=2019-02-02&sr=c&sig=%2FLNB%2B6g7RW2ccJxcT2kDNsoZmDjRNCaZnTEW%2FgtdrWg%3D&st=2020-08-19T19%3A52%3A27Z&se=2020-08-20T20%3A52%3A27Z&sp=rwd\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ @@ -3833,6 +3835,7 @@ "RequestUri": "/subscriptions/79ea0716-8a0e-4e48-a348-e3952d79809e/resourceGroups/ps2542/providers/Microsoft.Network/vpnGateways/ps3158/stoppacketcapture?api-version=2020-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzllYTA3MTYtOGEwZS00ZTQ4LWEzNDgtZTM5NTJkNzk4MDllL3Jlc291cmNlR3JvdXBzL3BzMjU0Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdnBuR2F0ZXdheXMvcHMzMTU4L3N0b3BwYWNrZXRjYXB0dXJlP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", "RequestMethod": "POST", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"sasUrl\": \"https://stops2542.blob.core.windows.net/testcontainer?sv=2019-02-02&sr=c&sig=%2FLNB%2B6g7RW2ccJxcT2kDNsoZmDjRNCaZnTEW%2FgtdrWg%3D&st=2020-08-19T19%3A52%3A27Z&se=2020-08-20T20%3A52%3A27Z&sp=rwd\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [